mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-04-07 13:32:44 +02:00
17 lines
203 B
C++
17 lines
203 B
C++
//
|
|
// Created by FlaXxy on 29.07.2018.
|
|
//
|
|
#pragma once
|
|
|
|
#include <glm/vec2.hpp>
|
|
|
|
namespace MM::Components {
|
|
|
|
struct Velocity2D {
|
|
glm::vec2 velocity;
|
|
float rotation {0.f};
|
|
};
|
|
|
|
} // MM::Components
|
|
|