-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6416293
commit b2cba26
Showing
3 changed files
with
12 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,20 @@ | ||
#ifndef _TAIANIMATION_H | ||
#define _TAIANIMATION_H | ||
typedef class TAIanimation; | ||
typedef class AnimMgr; | ||
typedef class AnimInfo; | ||
#include "types.h" | ||
|
||
class AnimInfo { | ||
struct AnimInfo { | ||
AnimInfo(); | ||
}; | ||
class AnimMgr { | ||
struct AnimMgr { | ||
AnimMgr(); | ||
|
||
public: | ||
AnimInfo* addAnimation(char*, bool); | ||
}; | ||
|
||
class TAIanimation { | ||
unsigned int _00; // _00 | ||
AnimMgr* m_animmgr; // _04 | ||
AnimInfo* m_animinfo; // _08 | ||
struct TAIanimation { | ||
u32 _00; // _00 | ||
AnimMgr* mAnimmgr; // _04 | ||
AnimInfo* mAniminfo; // _08 | ||
|
||
AnimInfo* addAnimation(char*); | ||
AnimInfo* addAnimation(char* anim); | ||
}; | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters