Example #1
0
 public static bool HasGameOption(this PlayerGameOptionFlag thisFlags, PlayerGameOptionFlag gameOptionFlag)
 {
     return((thisFlags & gameOptionFlag) == gameOptionFlag);
 }
Example #2
0
 public static PlayerGameOptionFlag WithoutGameOption(this PlayerGameOptionFlag thisFlags,
                                                      PlayerGameOptionFlag flag)
 {
     return(thisFlags & ~flag);
 }