11 lines
131 B
C++
11 lines
131 B
C++
#pragma once
|
|
|
|
#include <SDL2/SDL.h>
|
|
#include "../Math/Vec2.hpp"
|
|
|
|
struct Transform
|
|
{
|
|
Vec2 position;
|
|
Vec2 rotation;
|
|
Vec2 scale;
|
|
}; |