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