Example #1
0
        public Scene(Team team, Zone zone, Remoting.Time time , bool need_recovery)
        {
            _Team = team;
            _Id = Guid.NewGuid();
            this._Zone = zone;
            this._Time = time;

            _Updater = new Utility.Updater();
            _NeedRecover = need_recovery;
        }
Example #2
0
 public World(Remoting.Time time)
 {
     // TODO: Complete member initialization
     this._Time = time;
 }
Example #3
0
 public World(Remoting.Time time)
 {
     this._Time = time;
     _Realms = new Utility.TUpdater<Scene>();
     _Singletons = new Dictionary<string, Scene>();
 }