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

8 lines
227 B
C#
Raw Normal View History

2024-07-02 15:52:20 +08:00
namespace Game
{
public class EnterSingleModeEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(EnterSingleModeEventArgs).GetHashCode();
public override int Id => EventId;
}
}