blob: f00025adb5bf984dd203c252440e83eec543e48e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* PARSEC HEADER: obj_vani.h
*/
#ifndef _OBJ_VANI_H_
#define _OBJ_VANI_H_
// function pointer type for vtxanim registration
typedef void (*register_vtxanim_fpt)( GenObject *obj );
// external functions
int OBJ_RegisterVtxAnimation( const char *classname, register_vtxanim_fpt regfunc );
#endif // _OBJ_VANI_H_
|