mirror of
https://github.com/Relintai/voxelman.git
synced 2024-11-12 10:15:12 +01:00
19 lines
267 B
C++
19 lines
267 B
C++
#ifndef VOXEL_STRUCTURE_H
|
|
#define VOXEL_STRUCTURE_H
|
|
|
|
#include "core/reference.h"
|
|
|
|
class VoxelStructure : public Reference {
|
|
GDCLASS(VoxelStructure, Reference);
|
|
|
|
public:
|
|
VoxelStructure();
|
|
~VoxelStructure();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
};
|
|
|
|
#endif
|