Example #1
0
 public void AddCollectible(int collectibleLevelId, my_Collectible a_collectible)
 {
     GetCollectibleLevel(collectibleLevelId).AddCollectible(a_collectible);
 }
Example #2
0
 public void AddCollectible(string collectibleLevelName, my_Collectible a_collectible)
 {
     GetCollectibleLevel(collectibleLevelName).AddCollectible(a_collectible);
 }
Example #3
0
 public my_Collectible(my_Collectible another)
 {
     this.id = another.id;
     this.collectibleName = another.collectibleName;
 }