8 lines
155 B
C++
8 lines
155 B
C++
#include "Location.h"
|
|
|
|
Location::Location(TilePosition tp, bool sl)
|
|
{
|
|
this->lastScouted = 0;
|
|
this->startLocation = sl;
|
|
this->tilePosition = tp;
|
|
} |