Added cluts to splashpack

This commit is contained in:
2025-03-23 13:08:38 +01:00
parent 3c6989c291
commit dbc4bcb068
4 changed files with 30 additions and 4 deletions

View File

@@ -4,6 +4,7 @@
#include "psyqo/vector.hh"
#include "mesh.hh"
#include <cstdint>
namespace psxsplash {
@@ -11,8 +12,10 @@ class GameObject final {
public:
psyqo::Vec3 position; // 12 bytes
psyqo::Matrix33 rotation; // 36 bytes
psyqo::PrimPieces::TPageAttr texture; // 2 bytes
uint16_t polyCount; // 2 bytes
psyqo::PrimPieces::TPageAttr texture; // 2 bytes
uint16_t clutX, clutY;
uint16_t clut[256];
union { // 4 bytes
Tri *polygons;
uint32_t polygonsOffset;