1
0
mirror of https://github.com/blawar/ooot.git synced 2024-07-02 09:03:36 +00:00

Move Path to z64scene.h

This commit is contained in:
glank 2020-03-21 12:20:43 +01:00
parent fa4c848cad
commit 882a7ba1f5
2 changed files with 6 additions and 6 deletions

View File

@ -806,12 +806,6 @@ typedef struct
/* 0x01 */ u8 room;
} EntranceEntry;
typedef struct
{
/* 0x00 */ u8 n_points;
/* 0x04 */ Vec3s* point_array;
} Path; // size = 0x8
typedef struct
{
/* 0x00 */ u32 vromStart;

View File

@ -303,6 +303,12 @@ typedef struct
} MeshHeader2;
typedef struct
{
/* 0x00 */ u8 nPoints;
/* 0x04 */ Vec3s* pointArray;
} Path; // size = 0x8
typedef struct
{
u8 ambientClrR, ambientClrG, ambientClrB;