ProjectDDD/Assets/_DDD/_Scripts/GameFramework/EventBus/IEventHandler.cs
2025-07-17 17:15:40 +09:00

7 lines
115 B
C#

namespace DDD
{
public interface IEventHandler<in T> where T : IEvent
{
void Invoke(T evt);
}
}