fix: forgot to commit includes for car_physics

This commit is contained in:
Sara 2024-05-16 09:34:52 +02:00
parent c8462c5bf0
commit c6bdd35af9
2 changed files with 6 additions and 0 deletions

View file

@ -1,5 +1,7 @@
#include "car_physics.hpp"
#include "utils/godot_macros.h"
#include <godot_cpp/classes/curve.hpp>
namespace godot {
void CarPhysics::_bind_methods() {
#define CLASSNAME CarPhysics

View file

@ -1,6 +1,10 @@
#ifndef CAR_PHYSICS_HPP
#define CAR_PHYSICS_HPP
#include <godot_cpp/classes/curve.hpp>
#include <godot_cpp/classes/physics_direct_body_state3d.hpp>
#include <godot_cpp/classes/rigid_body3d.hpp>
namespace godot {
class CarPhysics : public RigidBody3D {
GDCLASS(CarPhysics, RigidBody3D);