Files
ph/include/Physics/Transform.hpp
T
2024-05-23 19:53:26 +02:00

13 lines
147 B
C++

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