Files
ph/include/Physics/Transform.hpp
T
2024-03-23 13:48:20 +01:00

13 lines
150 B
C++

#pragma once
#include "global.h"
#include "types.h"
#include "lib/math.h"
struct Transform {
Vec3p pos;
s16 rotation;
bool visible;
};