This commit is contained in:
parent
7e2646f5c3
commit
5b4d988629
Binary file not shown.
@ -234,18 +234,25 @@ struct sLevelHdr
|
|||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
//***************************************************************************
|
//***************************************************************************
|
||||||
// Actors
|
// Actors
|
||||||
|
struct sSpriteFrameGfx
|
||||||
|
{
|
||||||
|
u8 *PAKSpr; // 4 Needs to be u32, so might as well make it a ptr
|
||||||
|
u16 Pad; // 2 :o(
|
||||||
|
u8 W,H; // 2
|
||||||
|
};
|
||||||
|
|
||||||
struct sSpriteFrame
|
struct sSpriteFrame
|
||||||
{
|
{
|
||||||
u8 *PAKSpr; // 4
|
u16 FrameIdx;
|
||||||
s8 XOfs,YOfs; // 2
|
s8 XOfs,YOfs;
|
||||||
u8 W,H; // 2
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct sSpriteAnim
|
struct sSpriteAnim
|
||||||
{
|
{
|
||||||
u16 FrameCount; // 2
|
u16 FrameCount; // 2
|
||||||
u16 Pad;
|
u16 Pad;
|
||||||
u16 *Anim; // 4
|
sSpriteFrame *Anim; // 4
|
||||||
};
|
};
|
||||||
|
|
||||||
struct sSpriteAnimBank
|
struct sSpriteAnimBank
|
||||||
@ -257,7 +264,7 @@ struct sSpriteAnimBank
|
|||||||
|
|
||||||
u8 *Palette; // 4
|
u8 *Palette; // 4
|
||||||
sSpriteAnim *AnimList; // 4
|
sSpriteAnim *AnimList; // 4
|
||||||
sSpriteFrame *FrameList; // 4
|
sSpriteFrameGfx *FrameList; // 4
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user