From b7f4381e01bef8b5137f740672ddef1b27f5a406 Mon Sep 17 00:00:00 2001 From: Daveo Date: Mon, 5 Mar 2001 20:18:35 +0000 Subject: [PATCH] --- tools/Data/include/dstructs.h | 57 +++++++++++++++++++---------------- 1 file changed, 31 insertions(+), 26 deletions(-) diff --git a/tools/Data/include/dstructs.h b/tools/Data/include/dstructs.h index 583b39cb3..c9315394b 100644 --- a/tools/Data/include/dstructs.h +++ b/tools/Data/include/dstructs.h @@ -285,34 +285,8 @@ struct sTileBankHdr //*************************************************************************** // Actors -struct sActorHdr -{ - u16 BoneCount; - u16 TriCount; - u16 QuadCount; -// u16 WeightCount; - u16 VtxCount; - - sBone *BoneList; - sTri *TriList; - sQuad *QuadList; -// sWeight *WeightList; - sVtx *VtxList; - sTexInfo *TexInfo; -}; - -//*************************************************************************** -// Anim typedef u16 AnimIdx; -struct sAnimFileHdr -{ - u16 BoneCount; - u16 AnimCount; - sQuat *QuatTable; -// Anim Hdrs.... -}; - struct sAnimHdr { u16 FrameCount; @@ -321,5 +295,36 @@ struct sAnimHdr s32 *Move; }; +struct sActorHdr +{ + u16 BoneCount; + u16 TriCount; + u16 QuadCount; + u16 WeightCount; + u16 VtxCount; + u16 AnimCount; + + sBone *BoneList; + sTri *TriList; + sQuad *QuadList; + sWeight *WeightList; + sVtx *VtxList; + sTexInfo *TexInfo; + sAnimHdr *AnimList; + sQuat *QuatTable; +}; + +//*************************************************************************** +// Anim +/* +struct sAnimFileHdr +{ + u16 BoneCount; + u16 AnimCount; + sQuat *QuatTable; +// Anim Hdrs.... +}; +*/ + #endif \ No newline at end of file