コード例 #1
0
 public static void SetDisallowed( RazorFeatures feature, bool value )
 {
     if ( value )
         m_DisallowedFeatures |= feature;
     else
         m_DisallowedFeatures &= ~feature;
 }
コード例 #2
0
 public static void SetDisallowed(RazorFeatures feature, bool value)
 {
     if (value)
     {
         m_DisallowedFeatures |= feature;
     }
     else
     {
         m_DisallowedFeatures &= ~feature;
     }
 }
コード例 #3
0
 public static void AllowFeature(RazorFeatures feature)
 {
     SetDisallowed(feature, false);
 }
コード例 #4
0
 public static void DisallowFeature(RazorFeatures feature)
 {
     SetDisallowed(feature, true);
 }
コード例 #5
0
ファイル: RazorNegotiator.cs プロジェクト: Godkong/RunUO
 public static void DisallowFeature( RazorFeatures feature )
 {
     SetDisallowed( feature, true );
 }
コード例 #6
0
ファイル: RazorNegotiator.cs プロジェクト: Godkong/RunUO
 public static void AllowFeature( RazorFeatures feature )
 {
     SetDisallowed( feature, false );
 }