ProjectDDD/Assets/_DDD/_Scripts/GameFramework/EventBus/IEventHandler.cs
2025-07-16 18:21:12 +09:00

7 lines
115 B
C#

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