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