Beispiel #1
0
        public Server()
        {
            //_LogRecorder = new LogFileRecorder("Storage");
            _DefaultAdministratorName = "vgameadmini";

            //const string mongodbUrls = "mongodb://127.0.0.1:27017";
            _Name = "VGame";
            _Updater = new Updater();
            _Database = new Database();
            _Center = new Center(this);
        }
Beispiel #2
0
 public Proxy(IUserFactoty<IUser> custom, Center standalone)
     : this(custom)
 {
     _Standalone = standalone;
 }