17 lines
461 B
C#
17 lines
461 B
C#
|
namespace Game
|
||
|
{
|
||
|
public class HallSceneClickMenuEventArgs : GameEventArgs
|
||
|
{
|
||
|
public static readonly int EventId = typeof(HallSceneClickMenuEventArgs).GetHashCode();
|
||
|
public override int Id => EventId;
|
||
|
|
||
|
public string menuId { get; }
|
||
|
public string menuName { get; }
|
||
|
|
||
|
public HallSceneClickMenuEventArgs(string id, string name)
|
||
|
{
|
||
|
this.menuId = id;
|
||
|
this.menuName = name;
|
||
|
}
|
||
|
}
|
||
|
}
|