mirror of
https://github.com/Mestima/GodotHook.git
synced 2025-05-03 23:00:23 +00:00
14 lines
244 B
C++
14 lines
244 B
C++
/* register_types.cpp */
|
|
|
|
#include "register_types.h"
|
|
|
|
#include "core/class_db.h"
|
|
#include "hook.h"
|
|
|
|
void register_hook_types() {
|
|
ClassDB::register_class<Hook>();
|
|
}
|
|
|
|
void unregister_hook_types() {
|
|
// Nothing to do here in this example.
|
|
} |