mirror of
https://github.com/Relintai/godot_fastnoise.git
synced 2024-11-12 10:15:21 +01:00
18 lines
204 B
C++
18 lines
204 B
C++
|
#include "register_types.h"
|
||
|
#include "object_type_db.h"
|
||
|
|
||
|
#include "noise.h"
|
||
|
|
||
|
|
||
|
void register_fastnoise_types() {
|
||
|
|
||
|
ObjectTypeDB::register_type<FastNoise>();
|
||
|
}
|
||
|
|
||
|
|
||
|
void unregister_fastnoise_types() {
|
||
|
|
||
|
}
|
||
|
|
||
|
|