Major refactoring - moved constants around, made graph class more graphy, put things where they belong. Simplified a lot of code that I wrote when I wasn't thinking clearly, apparently.

This commit is contained in:
2011-06-23 12:36:40 -04:00
parent 54b46d77d2
commit d76fc8099e
4 changed files with 30 additions and 59 deletions

View File

@ -41,8 +41,8 @@ class GameCore : public MainEvent
// data
Graph graph;
// constants
static int NODE_SIZE;
static int NODE_RADIUS;
static int MAX_MOVE_DISTANCE;
};
#endif