Exemplo n.º 1
0
 public NetworkProcessor(Game game)
 {
     this.game      = game;
     cpeData        = new CPESupport();
     cpeData.game   = game;
     IsSinglePlayer = false;
 }
Exemplo n.º 2
0
 public NetworkProcessor(Game window)
 {
     game           = window;
     cpeData        = new CPESupport(); game.Components.Add(cpeData);
     IsSinglePlayer = false;
 }
Exemplo n.º 3
0
 public NetworkProcessor( Game window )
 {
     game = window;
     cpe = game.AddComponent( new CPESupport() );
     SetupHandlers();
 }