Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/jolt_physics/Jolt/Physics/Vehicle/VehicleController.cpp
9912 views
1
// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
2
// SPDX-FileCopyrightText: 2021 Jorrit Rouwe
3
// SPDX-License-Identifier: MIT
4
5
#include <Jolt/Jolt.h>
6
7
#include <Jolt/Physics/Vehicle/VehicleController.h>
8
#include <Jolt/ObjectStream/TypeDeclarations.h>
9
10
JPH_NAMESPACE_BEGIN
11
12
JPH_IMPLEMENT_SERIALIZABLE_ABSTRACT(VehicleControllerSettings)
13
{
14
JPH_ADD_BASE_CLASS(VehicleControllerSettings, SerializableObject)
15
}
16
17
JPH_NAMESPACE_END
18
19