ZK_Framework/Assets/Scripts/Game/Event/Args/EnterSingleModeEventArgs.cs

8 lines
227 B
C#

namespace Game
{
public class EnterSingleModeEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(EnterSingleModeEventArgs).GetHashCode();
public override int Id => EventId;
}
}