예제 #1
0
파일: Scene.cs 프로젝트: cattron313/CS194W
 public Scene(string p)
 {
     location = new Setting(p);
     characterList = new List<Character>();
     propList = new List<Prop>();
     curSelCharName = "";
 }
예제 #2
0
파일: Scene.cs 프로젝트: cattron313/CS194W
 public void setSetting(string p)
 {
     Setting newLoc = new Setting(p);
     location = newLoc;
     //return location;
 }