mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-07-14 21:16:44 +02:00
remove old transform and velocity components and replace with new decomposed components
focus on 2D for now
This commit is contained in:
12
framework/common_components/src/mm/components/position3d.hpp
Normal file
12
framework/common_components/src/mm/components/position3d.hpp
Normal file
@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include <glm/vec3.hpp>
|
||||
|
||||
namespace MM::Components {
|
||||
|
||||
struct Position3D {
|
||||
glm::vec3 pos {0.f, 0.f, 0.f};
|
||||
};
|
||||
|
||||
} // MM::Components
|
||||
|
Reference in New Issue
Block a user