Beispiel #1
0
 public ClientZone(IClientEntityFactory entityFactory, ProtobufChannelToServerZoneOutbound serverChannel)
 {
     _entityFactory = entityFactory;
     _timerProvider = new EntityTimerProvider(this);
     _serverChannel = serverChannel;
 }
Beispiel #2
0
 public ServerZone(IServerEntityFactory entityFactory)
 {
     _entityFactory = entityFactory;
     _timerProvider = new EntityTimerProvider(this);
     _startTime     = DateTime.UtcNow;
 }