canto/Assets/Scripts/SOAP/IEvent.cs
2025-07-14 22:22:25 -04:00

7 lines
103 B
C#

namespace KitsuneCafe.SOAP
{
public interface IEvent<T>
{
void Raise(T value);
}
}