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)); }
public Season GetSeason() { return(Gametime.GetSeason(Hemisphere)); }
public void update(float deltatime) { Gametime.Update(deltatime); }