namespace Game { public class AddRobotEventArgs : GameEventArgs { public static readonly int EventId = typeof(AddRobotEventArgs).GetHashCode(); public override int Id => EventId; } public class DeleteAllRobotEventArgs : GameEventArgs { public static readonly int EventId = typeof(DeleteAllRobotEventArgs).GetHashCode(); public override int Id => EventId; } }