meta (prep for hook func):

* removed meta_type::reset
* added meta_reset overloads
This commit is contained in:
Michele Caini
2021-07-23 13:29:18 +02:00
parent 959bc269e4
commit 2b07b92039
18 changed files with 120 additions and 100 deletions

View File

@@ -26,8 +26,8 @@ void set_up() {
}
void tear_down() {
entt::resolve<position>().reset();
entt::resolve<velocity>().reset();
entt::meta_reset<position>();
entt::meta_reset<velocity>();
}
CR_EXPORT int cr_main(cr_plugin *ctx, cr_op operation) {