2019-05-31 18:26:36 +02:00
|
|
|
#include "register_types.h"
|
|
|
|
|
2019-05-31 22:54:31 +02:00
|
|
|
#include "library/voxel_surface.h"
|
|
|
|
#include "library/voxelman_library.h"
|
|
|
|
|
|
|
|
#include "data/voxel_light.h"
|
|
|
|
#include "meshers/voxel_mesher.h"
|
2019-09-04 18:33:19 +02:00
|
|
|
#include "meshers/transvoxel_cell_data.h"
|
2019-05-31 22:54:31 +02:00
|
|
|
#include "meshers/voxel_mesher_transvoxel.h"
|
2019-06-10 01:41:57 +02:00
|
|
|
#include "meshers/voxel_mesher_transvoxel_terrarin.h"
|
2019-05-31 22:54:31 +02:00
|
|
|
|
2019-05-31 23:57:56 +02:00
|
|
|
#include "world/voxel_buffer.h"
|
2019-06-07 01:33:41 +02:00
|
|
|
#include "world/voxel_world.h"
|
|
|
|
#include "world/voxel_chunk.h"
|
2019-09-24 02:05:40 +02:00
|
|
|
#include "world/voxel_structure.h"
|
2019-10-07 22:22:47 +02:00
|
|
|
#include "world/environment_data.h"
|
2019-10-10 23:51:05 +02:00
|
|
|
#include "world/voxel_chunk_prop_data.h"
|
2019-05-31 23:57:56 +02:00
|
|
|
|
2019-07-13 22:03:23 +02:00
|
|
|
#include "meshers/cubic_mesher/voxel_mesher_cubic.h"
|
2019-07-14 17:33:46 +02:00
|
|
|
#include "meshers/cubic_mesher/voxel_cube_points.h"
|
2019-07-13 22:03:23 +02:00
|
|
|
|
2019-07-19 18:39:46 +02:00
|
|
|
#include "props/voxelman_prop.h"
|
2019-09-22 02:46:21 +02:00
|
|
|
#include "props/voxelman_prop_entry.h"
|
|
|
|
#include "props/voxelman_prop_scene.h"
|
|
|
|
#include "props/voxelman_prop_mesh.h"
|
|
|
|
#include "props/voxelman_prop_light.h"
|
2019-10-24 15:15:32 +02:00
|
|
|
#include "props/voxelman_prop_prop.h"
|
2019-07-19 18:39:46 +02:00
|
|
|
|
2019-09-03 13:52:32 +02:00
|
|
|
#include "level_generator/voxelman_level_generator.h"
|
|
|
|
|
2019-05-31 18:26:36 +02:00
|
|
|
void register_voxelman_types() {
|
2019-05-31 22:54:31 +02:00
|
|
|
ClassDB::register_class<VoxelMesher>();
|
|
|
|
ClassDB::register_class<VoxelMesherTransvoxel>();
|
2019-06-10 01:41:57 +02:00
|
|
|
ClassDB::register_class<VoxelMesherTransvoxelTerrarin>();
|
2019-09-04 18:33:19 +02:00
|
|
|
ClassDB::register_class<TransvoxelCellData>();
|
2019-05-31 22:54:31 +02:00
|
|
|
|
|
|
|
ClassDB::register_class<VoxelSurface>();
|
|
|
|
ClassDB::register_class<VoxelmanLibrary>();
|
|
|
|
|
|
|
|
ClassDB::register_class<VoxelLight>();
|
2019-05-31 23:57:56 +02:00
|
|
|
|
|
|
|
ClassDB::register_class<VoxelBuffer>();
|
2019-06-07 01:33:41 +02:00
|
|
|
ClassDB::register_class<VoxelWorld>();
|
|
|
|
ClassDB::register_class<VoxelChunk>();
|
2019-09-24 02:05:40 +02:00
|
|
|
ClassDB::register_class<VoxelStructure>();
|
2019-10-07 22:22:47 +02:00
|
|
|
ClassDB::register_class<EnvironmentData>();
|
2019-10-10 23:51:05 +02:00
|
|
|
ClassDB::register_class<VoxelChunkPropData>();
|
2019-07-13 22:03:23 +02:00
|
|
|
|
|
|
|
ClassDB::register_class<VoxelMesherCubic>();
|
2019-07-14 17:33:46 +02:00
|
|
|
ClassDB::register_class<VoxelCubePoints>();
|
2019-07-19 18:39:46 +02:00
|
|
|
|
|
|
|
ClassDB::register_class<VoxelmanProp>();
|
2019-09-22 02:46:21 +02:00
|
|
|
ClassDB::register_class<VoxelmanPropEntry>();
|
|
|
|
ClassDB::register_class<VoxelmanPropScene>();
|
|
|
|
ClassDB::register_class<VoxelmanPropMesh>();
|
|
|
|
ClassDB::register_class<VoxelmanPropLight>();
|
2019-10-24 15:15:32 +02:00
|
|
|
ClassDB::register_class<VoxelmanPropProp>();
|
2019-09-03 13:52:32 +02:00
|
|
|
|
|
|
|
ClassDB::register_class<VoxelmanLevelGenerator>();
|
2019-05-31 18:26:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void unregister_voxelman_types() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|