mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-10-29 22:45:34 +01:00
13 lines
154 B
C++
13 lines
154 B
C++
#pragma once
|
|
|
|
#include <glm/vec2.hpp>
|
|
|
|
namespace MM::Components {
|
|
|
|
struct Velocity2DPosition {
|
|
glm::vec2 pos_vel {0.f, 0.f};
|
|
};
|
|
|
|
} // MM::Components
|
|
|