2015-02-26 09:02:31 -06:00
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
PURPOSE: (Cannonball Prototypes)
|
|
|
|
**************************************************************************/
|
|
|
|
|
2015-03-23 16:03:14 -05:00
|
|
|
#ifndef CANNON_CONTACT_PROTO_H
|
|
|
|
#define CANNON_CONTACT_PROTO_H
|
2015-02-26 09:02:31 -06: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
|