13 lines
179 B
C++
Raw Normal View History

2016-02-18 16:14:44 -06:00
#ifndef GRIDSQUARE_HH
#define GRIDSQUARE_HH
class GridSquare {
public:
bool isBlocked;
char mark;
GridSquare* parent;
int g_score;
int f_score;
};
#endif