diff options
author | jaroWMR <jarorutjes07@gmail.com> | 2024-10-23 18:44:24 +0200 |
---|---|---|
committer | jaroWMR <jarorutjes07@gmail.com> | 2024-10-23 18:44:24 +0200 |
commit | 1b96c6e3c57b9d1dc5fb02cbd24b625d7f7f5b05 (patch) | |
tree | 2dfb9cbaf7cfc80ae5ab5536419af0e19994908f /src | |
parent | 0d2491e8619ec9012381ed3e39e85e37e0cb7765 (diff) |
moved transform
Diffstat (limited to 'src')
-rw-r--r-- | src/crepe/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/crepe/PhysicsSystem.cpp | 2 | ||||
-rw-r--r-- | src/crepe/api/CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/crepe/api/Transform.cpp (renamed from src/crepe/Transform.cpp) | 0 | ||||
-rw-r--r-- | src/crepe/api/Transform.h (renamed from src/crepe/Transform.h) | 0 |
5 files changed, 3 insertions, 3 deletions
diff --git a/src/crepe/CMakeLists.txt b/src/crepe/CMakeLists.txt index 2ad20a7..df3adf0 100644 --- a/src/crepe/CMakeLists.txt +++ b/src/crepe/CMakeLists.txt @@ -10,7 +10,6 @@ target_sources(crepe PUBLIC Component.cpp ScriptSystem.cpp PhysicsSystem.cpp - Transform.cpp CollisionSystem.cpp Collider.cpp ) @@ -28,7 +27,6 @@ target_sources(crepe PUBLIC FILE_SET HEADERS FILES System.h ScriptSystem.h PhysicsSystem.h - Transform.h CollisionSystem.h Collider.h ) diff --git a/src/crepe/PhysicsSystem.cpp b/src/crepe/PhysicsSystem.cpp index e0bbc5b..d9930a8 100644 --- a/src/crepe/PhysicsSystem.cpp +++ b/src/crepe/PhysicsSystem.cpp @@ -1,7 +1,7 @@ #include "PhysicsSystem.h" #include "ComponentManager.h" #include "api/Rigidbody.h" -#include "Transform.h" +#include "api/Transform.h" #include "api/Force.h" #include <iostream> diff --git a/src/crepe/api/CMakeLists.txt b/src/crepe/api/CMakeLists.txt index 465ba46..ef01594 100644 --- a/src/crepe/api/CMakeLists.txt +++ b/src/crepe/api/CMakeLists.txt @@ -7,6 +7,7 @@ target_sources(crepe PUBLIC Sprite.cpp Force.cpp ParticleEmitter.cpp + Transform.cpp ) target_sources(crepe PUBLIC FILE_SET HEADERS FILES @@ -19,5 +20,6 @@ target_sources(crepe PUBLIC FILE_SET HEADERS FILES Sprite.h Force.h ParticleEmitter.h + Transform.h ) diff --git a/src/crepe/Transform.cpp b/src/crepe/api/Transform.cpp index 2c39523..2c39523 100644 --- a/src/crepe/Transform.cpp +++ b/src/crepe/api/Transform.cpp diff --git a/src/crepe/Transform.h b/src/crepe/api/Transform.h index 3e8d142..3e8d142 100644 --- a/src/crepe/Transform.h +++ b/src/crepe/api/Transform.h |