예제 #1
0
파일: Objectives.cs 프로젝트: Cendrb/Arman
 public Objectives Clone()
 {
     Objectives o = new Objectives();
     o.ActivateDetectors = ActivateDetectors;
     o.CollectAllCoins = CollectAllCoins;
     o.GetHome = GetHome;
     return o;
 }
예제 #2
0
파일: GameData.cs 프로젝트: Cendrb/Arman
 public GameData()
 {
     Blocks = new List<Block>();
     Entities = new List<Entity>();
     Objectives = new Objectives();
 }