mirror of
https://github.com/Relintai/voxelman.git
synced 2024-11-14 10:17:20 +01:00
18 lines
260 B
C
18 lines
260 B
C
|
#ifndef VOXEL_MESHER_CUBIC_H
|
||
|
#define VOXEL_MESHER_CUBIC_H
|
||
|
|
||
|
#include "../voxel_mesher.h"
|
||
|
|
||
|
class VoxelMesherCubic : public VoxelMesher {
|
||
|
GDCLASS(VoxelMesherCubic, VoxelMesher);
|
||
|
|
||
|
public:
|
||
|
VoxelMesherCubic();
|
||
|
|
||
|
protected:
|
||
|
static void _bind_methods();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|