mirror of
https://github.com/zeldaret/ph
synced 2026-05-24 07:10:52 -04:00
13 lines
150 B
C++
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;
|
|
};
|