diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2009-10-18 15:24:07 -0400 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2009-10-18 15:24:07 -0400 |
| commit | c027f1b9cd6c9deb60931a7f9f75bb4ee130291b (patch) | |
| tree | 49426a9cf3ee24434141c903b01481110b2808b6 /includes.h | |
| parent | a157cd82a86390f1fcb1a2086f86af5187e85a69 (diff) | |
| download | mazeoflife-c027f1b9cd6c9deb60931a7f9f75bb4ee130291b.tar.gz mazeoflife-c027f1b9cd6c9deb60931a7f9f75bb4ee130291b.tar.bz2 mazeoflife-c027f1b9cd6c9deb60931a7f9f75bb4ee130291b.zip | |
Added local highscore list
You can now view and add to a local highscore list. A change to State was necessary due to how the user's name would be entered into the highscore list and thus all states have been modified. Refs #104
Diffstat (limited to 'includes.h')
| -rw-r--r-- | includes.h | 7 |
1 files changed, 7 insertions, 0 deletions
| diff --git a/includes.h b/includes.h index a36c456..cd5c1e9 100644 --- a/includes.h +++ b/includes.h | |||
| @@ -1,7 +1,10 @@ | |||
| 1 | #include <SDL.h> | 1 | #include <SDL.h> |
| 2 | #include <SDL_ttf.h> | ||
| 2 | #include <stdio.h> | 3 | #include <stdio.h> |
| 3 | #include <time.h> | 4 | #include <time.h> |
| 4 | #include <string> | 5 | #include <string> |
| 6 | #include <vector> | ||
| 7 | #include <fstream> | ||
| 5 | #include "state.h" | 8 | #include "state.h" |
| 6 | #include "mazeoflife.h" | 9 | #include "mazeoflife.h" |
| 7 | #include "resources.h" | 10 | #include "resources.h" |
| @@ -9,3 +12,7 @@ | |||
| 9 | #include "htpstate.h" | 12 | #include "htpstate.h" |
| 10 | #include "chlstate.h" | 13 | #include "chlstate.h" |
| 11 | #include "gamestate.h" | 14 | #include "gamestate.h" |
| 15 | #include "highscore.h" | ||
| 16 | #include "hslist.h" | ||
| 17 | #include "hslocal.h" | ||
| 18 | #include "hsnew.h" | ||
