godot_fastnoise/register_types.cpp

18 lines
196 B
C++
Raw Normal View History

2016-05-02 17:19:15 +02:00
#include "register_types.h"
2019-08-11 23:12:38 +02:00
#include "core/class_db.h"
2016-05-02 17:19:15 +02:00
#include "noise.h"
void register_fastnoise_types() {
2017-08-22 21:18:42 +02:00
ClassDB::register_class<FastNoise>();
2016-05-02 17:19:15 +02:00
}
void unregister_fastnoise_types() {
}