2020-04-03 09:23:01 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) 2019-2020 Péter Magyar
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "register_types.h"
|
|
|
|
|
|
|
|
#include "clutter/ground_clutter.h"
|
|
|
|
#include "clutter/ground_clutter_foliage.h"
|
|
|
|
|
2020-04-03 13:45:55 +02:00
|
|
|
#include "prop_mesh_utils.h"
|
|
|
|
|
|
|
|
#include "prop_ess_entity.h"
|
2020-04-03 12:00:02 +02:00
|
|
|
#include "prop_instance.h"
|
2020-04-03 13:45:55 +02:00
|
|
|
#include "prop_mesh_data_instance.h"
|
|
|
|
#include "prop_voxelman_light.h"
|
2020-04-03 09:23:01 +02:00
|
|
|
|
2020-06-22 02:32:53 +02:00
|
|
|
#include "prop_instance_job.h"
|
|
|
|
|
2020-04-03 09:23:01 +02:00
|
|
|
void register_props_types() {
|
2020-04-03 12:00:02 +02:00
|
|
|
ClassDB::register_class<GroundClutter>();
|
2020-04-03 09:23:01 +02:00
|
|
|
ClassDB::register_class<GroundClutterFoliage>();
|
|
|
|
|
2020-04-03 13:45:55 +02:00
|
|
|
ClassDB::register_class<PropMeshUtils>();
|
|
|
|
|
2020-04-03 12:00:02 +02:00
|
|
|
ClassDB::register_class<PropInstance>();
|
2020-04-03 13:45:55 +02:00
|
|
|
|
|
|
|
ClassDB::register_class<PropESSEntity>();
|
|
|
|
ClassDB::register_class<PropMeshDataInstance>();
|
|
|
|
ClassDB::register_class<PropVoxelmanLight>();
|
2020-06-22 02:32:53 +02:00
|
|
|
|
|
|
|
ClassDB::register_class<PropInstanceJob>();
|
2020-04-03 09:23:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void unregister_props_types() {
|
|
|
|
}
|