From b7cd2f88cd28a2920e8a3a68cb9be8efced412bc Mon Sep 17 00:00:00 2001 From: Sara Date: Thu, 16 May 2024 08:47:09 +0200 Subject: [PATCH] feat: now registering car physics and player classes --- src/register_types.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/register_types.cpp b/src/register_types.cpp index 030faab..113767f 100644 --- a/src/register_types.cpp +++ b/src/register_types.cpp @@ -1,4 +1,6 @@ #include "register_types.h" +#include "car_physics.hpp" +#include "car_player.hpp" #include "utils/game_mode.hpp" #include "utils/game_root.hpp" #include "utils/game_state.hpp" @@ -24,6 +26,8 @@ void initialize_gdextension_types(ModuleInitializationLevel p_level) ClassDB::register_class(); ClassDB::register_class(); + ClassDB::register_class(); + ClassDB::register_class(); } extern "C"