예제 #1
0
 public my_CollectibleList(my_CollectibleList another)
 {
     this.id              = another.id;
     this.listName        = another.listName;
     this.collectibleList = another.collectibleList;
 }
예제 #2
0
 // Use this for initialization
 void Start()
 {
     levelManager            = LevelManager.Instance;
     currentCollectibleLevel = levelManager.achievementmanager.GetCollectibleLevel(levelManager.CurrentLevelName);
 }
예제 #3
0
 public void AddCollectibleLevel(my_CollectibleList collectibleLevel)
 {
     collectibleLevel.id = collectibleAchievedList.Count;
     collectibleAchievedList.Add(collectibleLevel);
 }