コード例 #1
0
ファイル: CompositeGift.cs プロジェクト: 2SANAL/Swabhav-Repo
 public void Remove(GiftBase gift)
 {
     _gifts.Remove(gift);
 }
コード例 #2
0
ファイル: CompositeGift.cs プロジェクト: 2SANAL/Swabhav-Repo
 public void Add(GiftBase gift)
 {
     _gifts.Add(gift);
 }