コード例 #1
0
ファイル: State.cs プロジェクト: pasha-kuznetsov/dressing-up
 private bool CanPutOn(ClothingType clothing)
 {
     return(Policy?.CanPutOn(this, clothing) ?? true);
 }