blob: b5da6324864fb7e66f70524b0ca8fb9ecbe06662 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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_
|