blob: 735fd72475bdb03d48d437ad7451d0a214a0fa35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* PARSEC HEADER: obj_clas.h
*/
#ifndef _OBJ_CLAS_H_
#define _OBJ_CLAS_H_
// external functions
GenObject* OBJ_FetchObjectClass( const char *classname );
dword OBJ_FetchObjectClassId( const char *classname );
GenObject* OBJ_ReacquireObjectClass( dword *classid, const char *classname );
void OBJ_InitClass( dword classid );
#endif // _OBJ_CLAS_H_
|