Initial commit

This commit is contained in:
2022-05-14 05:39:04 +03:00
parent 911cd75586
commit f1651856a8
7 changed files with 120 additions and 0 deletions

14
register_types.cpp Normal file
View File

@ -0,0 +1,14 @@
/* 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.
}