コード例 #1
0
 public void Item(Item[] loot)
 {
     foreach (Item current in loot)
     {
         Party.AddLoot(current);
     }
     itemMenu.SetActive(true);
     eventSpace.SetActive(false);
     nextMenu.SetActive(false);
 }
コード例 #2
0
 public override void OnRecruit()
 {
     Party.AddLoot(new Calculator());
 }
コード例 #3
0
 public override void OnRecruit()
 {
     Party.AddLoot(new Flask());
 }