예제 #1
0
파일: Packets.cs 프로젝트: Leorgrium/runuo
 public static void Enable( ThirdPartyFeature feature )
 {
     SetDisabled( feature, false );
 }
예제 #2
0
파일: Packets.cs 프로젝트: Leorgrium/runuo
 public static void SetDisabled( ThirdPartyFeature feature, bool value )
 {
     if ( value )
         m_Disabled |= feature;
     else
         m_Disabled &= ~feature;
 }
예제 #3
0
파일: Packets.cs 프로젝트: Leorgrium/runuo
 public static void Disable( ThirdPartyFeature feature )
 {
     SetDisabled( feature, true );
 }