Adding splashpack

This commit is contained in:
2025-03-22 08:43:24 +01:00
parent 0d46881d7f
commit 29cbd54254
9 changed files with 87 additions and 50 deletions

View File

@@ -9,11 +9,11 @@ namespace psxsplash {
class GameObject final {
public:
psyqo::Vec3 position;
psyqo::Matrix33 rotation;
psyqo::PrimPieces::TPageAttr texture;
uint16_t polyCount;
union {
psyqo::Vec3 position; // 12 bytes
psyqo::Matrix33 rotation; // 36 bytes
psyqo::PrimPieces::TPageAttr texture; // 2 bytes
uint16_t polyCount; // 2 bytes
union { // 4 bytes
Tri *polygons;
uint32_t polygonsOffset;
};