mirror of
https://github.com/Relintai/godot_fastnoise.git
synced 2024-11-12 10:15:21 +01:00
20 lines
282 B
C++
20 lines
282 B
C++
#include "register_types.h"
|
|
#include "core/class_db.h"
|
|
|
|
#include "noise.h"
|
|
#include "fastnoise_noise_params.h"
|
|
|
|
|
|
void register_fastnoise_types() {
|
|
|
|
ClassDB::register_class<FastNoise>();
|
|
ClassDB::register_class<FastnoiseNoiseParams>();
|
|
}
|
|
|
|
|
|
void unregister_fastnoise_types() {
|
|
|
|
}
|
|
|
|
|