Exemple #1
0
 public void SimulateBannedFromGame()
 {
     GameNotification notification = new GameNotification()
     {
         MessageCode = "PG-0021",
         Type = "PLAYER_BANNED_FROM_GAME"
     };
     MessageReceived(notification);
 }
Exemple #2
0
 public void SimulatePlayerLeftQueue()
 {
     GameNotification notification = new GameNotification()
     {
         MessageCode = "CG-0001",
         MessageArgument = "318908",
         Type = "PLAYER_QUIT"
     };
     MessageReceived(notification);
 }