Exemplo n.º 1
0
 public static void SetState(ref ShowOptionType type, ShowOptionType nSet, ShowOptionType nClear)
 {
     if (nSet > ShowOptionType.None)
     {
         type |= nSet;
     }
     if (nClear > ShowOptionType.None)
     {
         type &= ~nClear;
     }
 }
Exemplo n.º 2
0
 public static bool SearchOption(ShowOptionType type)
 {
     return((type & ShowOptionType.Search) > ShowOptionType.None);
 }
Exemplo n.º 3
0
 public static bool RunInventoryOption(ShowOptionType type)
 {
     return((type & ShowOptionType.RunInventory) > ShowOptionType.None);
 }
Exemplo n.º 4
0
 public static void SetState(ref ShowOptionType type, ShowOptionType nSet, ShowOptionType nClear)
 {
     if (nSet > ShowOptionType.None)
     {
         type |= nSet;
     }
     if (nClear > ShowOptionType.None)
     {
         type &= ~nClear;
     }
 }
Exemplo n.º 5
0
 public static bool SearchOption(ShowOptionType type)
 {
     return ((type & ShowOptionType.Search) > ShowOptionType.None);
 }
Exemplo n.º 6
0
 public static bool RunInventoryOption(ShowOptionType type)
 {
     return ((type & ShowOptionType.RunInventory) > ShowOptionType.None);
 }