36 lines
727 B
C
36 lines
727 B
C
/* ##H_FILE#
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
FILE : PCS_Str.h
|
|
|
|
DESCRIPTION : Structure of Physical collide set module
|
|
|
|
VERSION : 1.00/Olivier Jourdan/Creation
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
*/
|
|
#ifndef __PCSStruc_H__
|
|
#define __PCSStruc_H__
|
|
|
|
#ifdef PCS_MAIN
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct tdstPhysicalCollSet_
|
|
{
|
|
ACP_tdxHandleOfObject hZdm;
|
|
ACP_tdxHandleOfObject hZdd;
|
|
ACP_tdxHandleOfObject hZde;
|
|
ACP_tdxHandleOfObject hZdr;
|
|
|
|
} tdstPhysicalCollSet;
|
|
|
|
#ifdef __cplusplus
|
|
}/* extern "C" */
|
|
#endif
|
|
|
|
#endif /* PCS_MAIN*/
|
|
|
|
#endif /* __PCSStruc_H__*/
|