Frame/Assets/Scripts/Event/Args/BackHallSSceneEventArgs.cs

15 lines
385 B
C#
Raw Normal View History

namespace Game
{
public class BackHallSSceneEventArgs : GameEventArgs
{
public static readonly int EventId = typeof(BackHallSSceneEventArgs).GetHashCode();
public override int Id => EventId;
public string sceneName { get; }
public BackHallSSceneEventArgs(string sceneName)
{
this.sceneName = sceneName;
}
}
}