After decimating the enemy forces that have attacked your ship, you are charged with taking out as many of the remaining enemy fighters as possible. 3d space fighter game was initially written while I was testing some 3d routines I was implementing for a flight simulator, but my daughter started playing it and seemed to enjoy it so I added a few sound effects, explosions etc. and so this little game was born.

Dependencies:   mbed

Revision:
0:01829868570e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GameInput.cpp	Sat Jan 03 18:48:11 2015 +0000
@@ -0,0 +1,9 @@
+#include "mbed.h"
+#include "GameInput.h"
+
+DigitalIn GameInput::_up(P0_13, PullUp);
+DigitalIn GameInput::_down(P0_12, PullUp);
+DigitalIn GameInput::_left(P0_14, PullUp);
+DigitalIn GameInput::_right(P0_11, PullUp);
+DigitalIn GameInput::_square(P0_16, PullUp);
+DigitalIn GameInput::_circle(P0_1, PullUp);
\ No newline at end of file