예제 #1
0
 public void AddItem(Item item)
 {
     if (IsCanTake(item))
     {
         item.SetOwner(Owner);
         items.RxAdd(item);
     }
 }