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

8 lines
228 B
C#
Raw Normal View History

2024-07-05 13:34:17 +08:00
namespace ZGame
{
public class EnterSingleModeEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(EnterSingleModeEventArgs).GetHashCode();
public override int Id => EventId;
}
}