13 lines
417 B
C#
13 lines
417 B
C#
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;
|
|
}
|
|
} |