Example #1
0
 public BeeWorldManager()
 {
     this.mRandom = new Random();
     this.mTime = new BeeTime();
     this.mElapsedTimeSpan = new BeeTimeSpan();
     this.mPlayerManager = new PlayerManager(this);
     this.ResetTimeRates();
 }
Example #2
0
 public void Reset(BeeTime beeTime)
 {
     this.Minute = beeTime.Minute;
     this.Hour = beeTime.Hour;
     this.Day = beeTime.Day;
 }