//14.10 - Towns.h - Mark Lee - Prima Publishing #ifndef TOWNS_H #define TOWNS_H #include //#include "Movement.h" using namespace std; //stores the info for a Town struct Town { LPCTSTR name; RECT position; }; vector towns;//all of the towns (13 of them) //creates all of the Town objects void CreateTowns(); #endif