13 lines
199 B
C#
13 lines
199 B
C#
|
|
using System;
|
||
|
|
using Gameplay.Unit;
|
||
|
|
|
||
|
|
namespace Gameplay.Area
|
||
|
|
{
|
||
|
|
public interface IEventHandler
|
||
|
|
{
|
||
|
|
void RegisterEvents();
|
||
|
|
void UnregisterEvents();
|
||
|
|
void Dispose();
|
||
|
|
}
|
||
|
|
}
|