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