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