Exemplo n.º 1
0
 public EfficaxSimulation(ServerInteractor serverInteractor)
 {
     this.serverInteractor = serverInteractor;
     entityContainer       = new EntityContainer(serverInteractor);
 }
Exemplo n.º 2
0
 public ServerPacketRouter(ServerInteractor serverInteractor)
 {
     this.serverInteractor = serverInteractor;
     Init();
 }
Exemplo n.º 3
0
 public EntityContainer(ServerInteractor serverInteractor)
 {
     this.serverInteractor = serverInteractor;
     entityRegistry        = new EntityRegistry(serverInteractor);
 }
Exemplo n.º 4
0
 public EntityRegistry(ServerInteractor serverInteractor)
 {
     this.serverInteractor = serverInteractor;
 }
Exemplo n.º 5
0
 public void InitBase(ServerInteractor serverInteractor)
 {
     this.serverInteractor = serverInteractor;
 }