Esempio n. 1
0
        public static void RequestCutOutShape(IMyVoxelBase voxelMap, IMyVoxelShape voxelShape)
        {
            MyVoxelBase voxelbool = voxelMap as MyVoxelBase;
            MyShape     shape     = voxelShape as MyShape;

            if ((voxelbool != null) && (shape != null))
            {
                shape.SendCutOutRequest(voxelbool);
            }
        }