コード例 #1
0
ファイル: OptionalMount.cs プロジェクト: Nochtal/EDRPGManager
 public void EquipComponent(iComponent pw)
 {
     if (VerifyComponent(pw))
     {
         Optional = (iOptionalComponent)pw;
     }
     else
     {
         /// Do nothing
     }
 }
コード例 #2
0
ファイル: OptionalMount.cs プロジェクト: Nochtal/EDRPGManager
 public void RemoveComponent()
 {
     Optional = null;
 }