public static bool IsHashIntervalTick(this GasNet network, int interval)
 {
     return(network.HashOffsetTicks() % interval == 0);
 }
 public void DestroyGasNet(GasNet net)
 {
     GasNetworks.Remove(net);
     net.Destroy();
 }
 public static int HashOffsetTicks(this GasNet network)
 {
     return(Find.TickManager.TicksGame + network.GetHashCode().HashOffset());
 }