Framwork/Assets/Scripts/Base/Event/Args/EnterSingleModeEventArgs.cs

8 lines
228 B
C#
Raw Normal View History

2025-04-26 21:05:13 +08:00
namespace ZGame
{
public class EnterSingleModeEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(EnterSingleModeEventArgs).GetHashCode();
public override int Id => EventId;
}
}