コード例 #1
0
ファイル: Bag.cs プロジェクト: DreRandaci/bag-o-loot
 public void RemovePresent(Present present)
 {
     _contents.Remove(present);
 }
コード例 #2
0
ファイル: Bag.cs プロジェクト: DreRandaci/bag-o-loot
 public void DeliverPresent(Present present)
 {
     present.Delivered = true;
     RemovePresent(present);
 }
コード例 #3
0
ファイル: Bag.cs プロジェクト: DreRandaci/bag-o-loot
 public void AddPresent(Present present)
 {
     _contents.Add(present);
 }