GodotHook/register_types.cpp
2022-08-19 05:16:20 +03:00

14 lines
254 B
C++

/* register_types.cpp */
#include "register_types.h"
#include "core/class_db.h"
#include "hook.h"
void register_GodotHook_types() {
ClassDB::register_class<Hook>();
}
void unregister_GodotHook_types() {
// Nothing to do here in this example.
}