Beispiel #1
0
        public override void remove()
        {
            // just remove the voxels
            World world = World.world;

            world.remove(baseLocation);

            if (onEntityRemoved != null)
            {
                onEntityRemoved(this, null);
            }

            if (stationListener != null)
            {
                stationListener.onRemoved();
            }
        }
Beispiel #2
0
 public override void onRemoved()
 {
     stationListener.onRemoved();
 }