17 lines
234 B
C#
17 lines
234 B
C#
|
namespace Script.UI.Process
|
|||
|
{
|
|||
|
public interface IProcess
|
|||
|
{
|
|||
|
int ID { get; }
|
|||
|
|
|||
|
ProcessType processType { get; }
|
|||
|
|
|||
|
void Enter();
|
|||
|
|
|||
|
void Exit();
|
|||
|
|
|||
|
void Init();
|
|||
|
|
|||
|
void Dispose();
|
|||
|
}
|
|||
|
}
|