mirror of
https://github.com/Relintai/world_generator.git
synced 2024-11-14 10:17:19 +01:00
20 lines
282 B
C++
20 lines
282 B
C++
|
#include "voxelman_prop_entry.h"
|
||
|
|
||
|
Transform PlanetData::get_transform() const {
|
||
|
return _transform;
|
||
|
}
|
||
|
void PlanetData::set_transform(const Transform value) {
|
||
|
_transform = value;
|
||
|
}
|
||
|
|
||
|
PlanetData::PlanetData() {
|
||
|
|
||
|
}
|
||
|
PlanetData::~PlanetData() {
|
||
|
|
||
|
}
|
||
|
|
||
|
void PlanetData::_bind_methods() {
|
||
|
|
||
|
}
|