22 lines
327 B
C
22 lines
327 B
C
#ifndef __DNMREATY_H__
|
|
#define __DNMREATY_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Define the types of reactions between 2 mobiles */
|
|
|
|
typedef enum DNM_eReactionType {
|
|
DNM_eRT_NoReaction = -1,
|
|
DNM_eRT_Shock,
|
|
DNM_eRT_WallContact,
|
|
DNM_eRT_GroundContact
|
|
} DNM_tdeReactionType;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|