/* * physics.h * * Calculate what happens * * (c) 2008 Thomas White * * thrust3d - a silly game * */ #ifdef HAVE_CONFIG_H #include #endif #ifndef PHYSICS_H #define PHYSICS_H #include "types.h" extern void physics_step(Game *game, int dt); #endif /* PHYSICS_H */