예제 #1
0
 public Unlockable(Unlockable other)
 {
     this.type  = other.type;
     this.extra = other.extra;
 }
예제 #2
0
 public GameObject[] GetUnlockedItems(UnlockableType type)
 {
     return(unlockables[type].FindAll(u => u.GetComponent <Unlockable>().unlocked).ToArray());
 }
예제 #3
0
 public Unlockable(UnlockableType type, string extra)
 {
     this.type  = type;
     this.extra = extra;
 }