voxelman/meshers/cubic_mesher/voxel_mesher_cubic.h

19 lines
261 B
C
Raw Normal View History

2019-07-13 22:03:23 +02:00
#ifndef VOXEL_MESHER_CUBIC_H
#define VOXEL_MESHER_CUBIC_H
#include "../voxel_mesher.h"
class VoxelMesherCubic : public VoxelMesher {
GDCLASS(VoxelMesherCubic, VoxelMesher);
public:
2019-07-13 22:03:23 +02:00
VoxelMesherCubic();
protected:
static void _bind_methods();
};
#endif