1
0
mirror of https://github.com/Relintai/voxelman.git synced 2025-03-18 18:36:22 +01:00
voxelman/meshers/cubic_mesher/voxel_mesher_cubic.h

26 lines
434 B
C++

#ifndef VOXEL_MESHER_CUBIC_H
#define VOXEL_MESHER_CUBIC_H
#include "core/color.h"
#include "core/math/vector2.h"
#include "core/math/vector3.h"
#include "../voxel_mesher.h"
#include "voxel_cube_points.h"
class VoxelMesherCubic : public VoxelMesher {
GDCLASS(VoxelMesherCubic, VoxelMesher);
public:
void _add_chunk(Node *p_chunk);
VoxelMesherCubic();
~VoxelMesherCubic();
protected:
static void _bind_methods();
};
#endif