This commit is contained in:
parent
7e2646f5c3
commit
5b4d988629
2 changed files with 20 additions and 13 deletions
Binary file not shown.
|
@ -234,18 +234,25 @@ struct sLevelHdr
|
|||
//***************************************************************************
|
||||
//***************************************************************************
|
||||
// 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
|
||||
{
|
||||
u8 *PAKSpr; // 4
|
||||
s8 XOfs,YOfs; // 2
|
||||
u8 W,H; // 2
|
||||
u16 FrameIdx;
|
||||
s8 XOfs,YOfs;
|
||||
|
||||
};
|
||||
|
||||
struct sSpriteAnim
|
||||
{
|
||||
u16 FrameCount; // 2
|
||||
u16 Pad;
|
||||
u16 *Anim; // 4
|
||||
sSpriteFrame *Anim; // 4
|
||||
};
|
||||
|
||||
struct sSpriteAnimBank
|
||||
|
@ -257,7 +264,7 @@ struct sSpriteAnimBank
|
|||
|
||||
u8 *Palette; // 4
|
||||
sSpriteAnim *AnimList; // 4
|
||||
sSpriteFrame *FrameList; // 4
|
||||
sSpriteFrameGfx *FrameList; // 4
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue