ProjectDDD/Assets/_DDD/_Scripts/GameFramework/EventBus/IEventHandler.cs

7 lines
115 B
C#
Raw Normal View History

2025-07-16 09:21:12 +00:00
namespace DDD
{
public interface IEventHandler<in T> where T : IEvent
{
2025-07-17 08:15:40 +00:00
void Invoke(T evt);
2025-07-16 09:21:12 +00:00
}
}