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