mirror of
https://github.com/Relintai/godot_voxel.git
synced 2024-11-11 20:35:08 +01:00
23 lines
492 B
C++
23 lines
492 B
C++
#include "register_types.h"
|
|
#include "voxel_buffer.h"
|
|
#include "voxel_mesher.h"
|
|
#include "voxel_library.h"
|
|
#include "voxel_map.h"
|
|
#include "voxel_terrain.h"
|
|
|
|
void register_voxel_types() {
|
|
|
|
ObjectTypeDB::register_type<Voxel>();
|
|
ObjectTypeDB::register_type<VoxelBuffer>();
|
|
ObjectTypeDB::register_type<VoxelMesher>();
|
|
ObjectTypeDB::register_type<VoxelLibrary>();
|
|
ObjectTypeDB::register_type<VoxelMap>();
|
|
ObjectTypeDB::register_type<VoxelTerrain>();
|
|
|
|
}
|
|
|
|
void unregister_voxel_types() {
|
|
|
|
}
|
|
|