NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Area/IEventHandler.cs

13 lines
199 B
C#

using System;
using Gameplay.Unit;
namespace Gameplay.Area
{
public interface IEventHandler
{
void RegisterEvents();
void UnregisterEvents();
void Dispose();
}
}