Fix not building with jolt
Some checks failed
build-linux-glfw-x64 / build (push) Failing after 3m44s

This commit is contained in:
2024-12-06 13:39:11 -06:00
parent 4e0bb5caa9
commit d35fba24fa
4 changed files with 21 additions and 13 deletions

View File

@ -49,18 +49,5 @@ extern "C" {
#define GLM_ENABLE_EXPERIMENTAL 1 #define GLM_ENABLE_EXPERIMENTAL 1
#include <glm/gtx/matrix_decompose.hpp> #include <glm/gtx/matrix_decompose.hpp>
#include <Jolt/Jolt.h>
#include <Jolt/RegisterTypes.h>
#include <Jolt/Core/Factory.h>
#include <Jolt/Core/TempAllocator.h>
#include <Jolt/Core/JobSystemThreadPool.h>
#include <Jolt/Physics/PhysicsSettings.h>
#include <Jolt/Physics/PhysicsSystem.h>
#include <Jolt/Physics/Collision/Shape/BoxShape.h>
#include <Jolt/Physics/Collision/Shape/SphereShape.h>
#include <Jolt/Physics/Body/BodyCreationSettings.h>
#include <Jolt/Physics/Body/BodyActivationListener.h>
#include <Jolt/Physics/Character/Character.h>
#include <nlohmann/json.hpp> #include <nlohmann/json.hpp>
using json = nlohmann::json; using json = nlohmann::json;

View File

@ -5,6 +5,7 @@
#pragma once #pragma once
#include "scene/SceneItem.hpp" #include "scene/SceneItem.hpp"
#include "dawnphysics.hpp"
namespace Dawn { namespace Dawn {
enum class ColliderType { enum class ColliderType {

View File

@ -0,0 +1,19 @@
// Copyright (c) 2024 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include <Jolt/Jolt.h>
#include <Jolt/RegisterTypes.h>
#include <Jolt/Core/Factory.h>
#include <Jolt/Core/TempAllocator.h>
#include <Jolt/Core/JobSystemThreadPool.h>
#include <Jolt/Physics/PhysicsSettings.h>
#include <Jolt/Physics/PhysicsSystem.h>
#include <Jolt/Physics/Collision/Shape/BoxShape.h>
#include <Jolt/Physics/Collision/Shape/SphereShape.h>
#include <Jolt/Physics/Body/BodyCreationSettings.h>
#include <Jolt/Physics/Body/BodyActivationListener.h>
#include <Jolt/Physics/Character/Character.h>

View File

@ -5,6 +5,7 @@
#pragma once #pragma once
#include "dawn.hpp" #include "dawn.hpp"
#include "dawnphysics.hpp"
namespace Dawn { namespace Dawn {
class Game; class Game;