public Scene(string p) { location = new Setting(p); characterList = new List<Character>(); propList = new List<Prop>(); curSelCharName = ""; }
public void setSetting(string p) { Setting newLoc = new Setting(p); location = newLoc; //return location; }