Go to file
Guus Sliepen 6ea4744832 Bring sanity to the header files.
Most .h files were not used to declare the externally visible variables
and functions of the .cpp files, but only to #include things and declare
things that were needed by that .cpp file itself. This resulted in a lot
of duplication.

Now the .h files only declare what is externally visible from the
corresponding .cpp files. Starfighter.h includes all the other .h files,
and all .cpp files only #include "Starfighter.h". Functions and
variables that were not used outside the .cpp file that contained them
were marked static. Variables defined in .h files were moved to the
appropriate .cpp files.
2011-08-26 21:29:04 +02:00
code Bring sanity to the header files. 2011-08-26 21:29:04 +02:00
data Import data/ directory. 2011-08-26 14:50:08 +02:00
docs Import of version 1.1 minus music, sound and graphics. 2011-08-24 14:14:44 +02:00
makefile Add pack/unpack utilities. 2011-08-26 14:46:44 +02:00
pack.py Add pack/unpack utilities. 2011-08-26 14:46:44 +02:00
unpack.py Add pack/unpack utilities. 2011-08-26 14:46:44 +02:00