blob: 7e40c13fe822d2a766da6fef260c653ba58f83e9 (
plain) (
blame)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/***************************************************************************
* *
* Module : *
* *
* Purpose : *
* *
**************************************************************************/
/* RWPUBLIC */
#ifndef RTSKINSP_H
#define RTSKINSP_H
/**
* \defgroup rtskinsplit RtSkinSplit
* \ingroup skinning
*
* Skin Splitting Toolkit for RenderWare Graphics.
*/
/****************************************************************************
Includes
*/
#include <rwcore.h>
#include <rpworld.h>
/****************************************************************************
Defines
*/
/****************************************************************************
Global Types
*/
/****************************************************************************
Global variables (across program)
*/
/****************************************************************************
Function prototypes
*/
#ifdef __cplusplus
extern "C"
{
#endif /* __cpluscplus */
extern RpAtomic *
RtSkinSplitAtomicSplitGeometry( RpAtomic *atomic, RwUInt32 boneLimit );
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* RTSKINSP_H */
/* RWPUBLICEND */
|