BizHawk/BizHawk.Common/IMonitor.cs

9 lines
96 B
C#

namespace BizHawk.Common
{
public interface IMonitor
{
void Enter();
void Exit();
}
}