14 lines
183 B
C#
14 lines
183 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace BizHawk.Common
|
|||
|
{
|
|||
|
public interface IMonitor
|
|||
|
{
|
|||
|
void Enter();
|
|||
|
void Exit();
|
|||
|
}
|
|||
|
}
|