mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-07-02 07:46:46 +02:00
13 lines
147 B
C++
13 lines
147 B
C++
#pragma once
|
|
|
|
#include <glm/vec3.hpp>
|
|
|
|
namespace MM::Components {
|
|
|
|
struct Position3D {
|
|
glm::vec3 pos {0.f, 0.f, 0.f};
|
|
};
|
|
|
|
} // MM::Components
|
|
|