コード例 #1
0
ファイル: Assistants.cs プロジェクト: greeduomacro/vivre-uo
 public static void SetDisallowed(Features feature, bool value)
 {
     if (value)
         m_DisallowedFeatures |= feature;
     else
         m_DisallowedFeatures &= ~feature;
 }
コード例 #2
0
ファイル: Assistants.cs プロジェクト: felladrin/runuo-pt-br
 public static void DisallowFeature(Features feature)
 {
     SetDisallowed(feature, true);
 }
コード例 #3
0
ファイル: Assistants.cs プロジェクト: felladrin/runuo-pt-br
 public static void AllowFeature(Features feature)
 {
     SetDisallowed(feature, false);
 }