aboutsummaryrefslogtreecommitdiff
path: root/src/parsec/include/e_colani.h
blob: d7b23a8f6a32a4cb3bc753f815e3596db0f29004 (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_colani.h
 */

#ifndef _E_COLANI_H_
#define _E_COLANI_H_


// colanim spec

struct colanimreg_s {

	char*		name;
	dword		_pad32[ 3 ];
	colanim_s	colanim;
};


// external functions

colanimreg_s*	FetchColAnim( char *name, dword *colanimid );
void			InitAnimStateColAnim( FaceAnimState *animstate, colanim_s *colanim, dword colflags );
int				RegisterColAnim( colanimreg_s *colanimref );


// external variables

extern int			num_registered_colanims;
extern colanimreg_s	registered_colanims[];


#endif // _E_COLANI_H_