aboutsummaryrefslogtreecommitdiff
path: root/src/physics.h
blob: e1e3ffc359082450a1cffc465fef9ff1a53adb65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * physics.h
 *
 * Calculate what happens
 *
 * (c) 2008 Thomas White <taw27@cam.ac.uk>
 *
 *  thrust3d - a silly game
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifndef PHYSICS_H
#define PHYSICS_H

#include "types.h"

extern void physics_step(Game *game, int dt);

#endif	/* PHYSICS_H */