mirror of
https://github.com/Relintai/voxelman.git
synced 2024-11-14 10:17:20 +01:00
19 lines
261 B
C++
19 lines
261 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
|