VehicleController.cpp 377 B

12345678910111213141516
  1. // SPDX-FileCopyrightText: 2021 Jorrit Rouwe
  2. // SPDX-License-Identifier: MIT
  3. #include <Jolt/Jolt.h>
  4. #include <Jolt/Physics/Vehicle/VehicleController.h>
  5. #include <Jolt/ObjectStream/TypeDeclarations.h>
  6. JPH_NAMESPACE_BEGIN
  7. JPH_IMPLEMENT_SERIALIZABLE_ABSTRACT(VehicleControllerSettings)
  8. {
  9. JPH_ADD_BASE_CLASS(VehicleControllerSettings, SerializableObject)
  10. }
  11. JPH_NAMESPACE_END