2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
PURPOSE: (Cannonball Prototypes)
|
|
|
|
**************************************************************************/
|
|
|
|
|
2015-03-23 21:03:14 +00:00
|
|
|
#ifndef CANNON_CONTACT_PROTO_H
|
|
|
|
#define CANNON_CONTACT_PROTO_H
|
2015-02-26 15:02:31 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "cannon.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int cannon_integ(CANNON*) ;
|
|
|
|
int cannon_deriv_impact(CANNON*) ;
|
|
|
|
double cannon_impact(CANNON*) ;
|
|
|
|
int cannon_init(CANNON*) ;
|
|
|
|
int cannon_default_data(CANNON*) ;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|