예제 #1
0
 public static bool OnRewindCast(this SendCullMask mask)
 {
     return(BitTools.GetBitInMask((int)mask, 4));
 }
예제 #2
0
 public static bool OnCustomMsg(this SendCullMask mask)
 {
     return(BitTools.GetBitInMask((int)mask, 3));
 }
예제 #3
0
 public static bool OnChanges(this SendCullMask mask)
 {
     return(BitTools.GetBitInMask((int)mask, 1));
 }
예제 #4
0
 public static bool OnTeleport(this SendCullMask mask)
 {
     return(BitTools.GetBitInMask((int)mask, 2));
 }
예제 #5
0
 public static bool EveryTick(this SendCullMask mask)
 {
     return(BitTools.GetBitInMask((int)mask, 0));
 }