15 lines
385 B
C#
15 lines
385 B
C#
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;
|
|
}
|
|
}
|
|
} |