This commit is contained in:
Daveo 2001-05-15 17:40:54 +00:00
parent 5b4d988629
commit f8cc72ac83
4 changed files with 73 additions and 103 deletions

View file

@ -15,7 +15,7 @@
/*****************************************************************************/
struct sPoolNode
{
sSpriteFrame *Frame;
sSpriteFrameGfx *Frame;
RECT DstRect;
u16 TPage;
u8 U,V;
@ -151,11 +151,11 @@ virtual ~CActorGfx();
void SetOtPos(int Ot) {OtPos=Ot;}
protected:
void SetUpFT4(POLY_FT4 *Ft4,sSpriteFrame *Frame,sPoolNode *Node,int X,int Y,bool XFlip,bool YFlip);
sSpriteFrame *GetFrame(int Anim,int Frame);
void SetUpFT4(POLY_FT4 *Ft4,sPoolNode *Node,int X,int Y,bool XFlip,bool YFlip);
sActorPool *PoolEntry;
sSpriteFrame *CurrentFrame;
sSpriteFrameGfx *CurrentFrameGfx;
sBBox BBox;
bool ShadowFlag;