public GameServiceEvent(GameServiceEventType eventType)
 {
     this.EventType = eventType;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="GameServiceEvent"/> class.
 /// </summary>
 /// <param name="eventType">Type of the event.</param>
 /// <param name="args">The arguments.</param>
 public GameServiceEvent(GameServiceEventType eventType, Object args)
 {
     this.EventType = eventType;
     this.Args      = args;
 }