diff options
Diffstat (limited to 'src/parsec/include/e_texani.h')
| -rw-r--r-- | src/parsec/include/e_texani.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/parsec/include/e_texani.h b/src/parsec/include/e_texani.h new file mode 100644 index 0000000..b5da632 --- /dev/null +++ b/src/parsec/include/e_texani.h @@ -0,0 +1,34 @@ +/* + * PARSEC HEADER: e_texani.h + */ + +#ifndef _E_TEXANI_H_ +#define _E_TEXANI_H_ + + +// texanim spec + +struct texanimreg_s { + + char* name; +// dword _pad32[ 3 ]; +// colanim_s colanim; +}; + + +// external functions + +texanimreg_s* FetchTexAnim( char *name, dword *texanimid ); +void InitAnimStateTexAnim( FaceAnimState *animstate, texanim_s *texanim ); +int RegisterTexAnim( texanimreg_s *texanimref ); + + +// external variables + +extern int num_registered_texanims; +extern texanimreg_s registered_texanims[]; + + +#endif // _E_TEXANI_H_ + + |
