Beispiel #1
0
 public ShardServer(IWhisperComposerFactory <ShardRequest> composerFactory, IRandomSource randomSource, IWhisperDatasource wauth, IWhisperDatasource wshard, World world, Game.World.Shard shard, ShardConfig configuration) : base(composerFactory)
 {
     AppConfig    = configuration;
     SecureRandom = randomSource;
     AuthDB       = wauth;
     ShardDB      = wshard;
     World        = world;
     Shard        = shard;
 }
Beispiel #2
0
 public AuthServer(IWhisperComposerFactory <AuthRequest> composerFactory, IRandomSource randomSource, IWhisperDatasource wauth, AuthConfig configuration) : base(composerFactory)
 {
     AppConfig    = configuration;
     SecureRandom = randomSource;
     AuthDB       = wauth;
 }