mirror of
https://github.com/nasa/trick.git
synced 2025-01-03 03:46:44 +00:00
13 lines
179 B
C++
13 lines
179 B
C++
#ifndef GRIDSQUARE_HH
|
|
#define GRIDSQUARE_HH
|
|
|
|
class GridSquare {
|
|
public:
|
|
bool isBlocked;
|
|
char mark;
|
|
GridSquare* parent;
|
|
int g_score;
|
|
int f_score;
|
|
};
|
|
#endif
|