Пример #1
0
 public Place(string s = "A test place", int l = 1000, int w = 1000, int h = 200, int ly = -20)
 {
     name         = s;
     hemisphere   = Hemisphere.North;
     gametime     = new Gametime();
     Length       = l;
     Width        = w;
     Height       = h;
     LowestY      = ly;
     beyondGroups = new List <BeyondGroup>();
     Debug.Log(string.Format("New place '{0}' created", name));
 }
Пример #2
0
 public Season GetSeason()
 {
     return(Gametime.GetSeason(Hemisphere));
 }
Пример #3
0
 public void update(float deltatime)
 {
     Gametime.Update(deltatime);
 }