kora-bot/Source/Location.cpp
2023-04-10 18:31:02 -05:00

8 lines
155 B
C++

#include "Location.h"
Location::Location(TilePosition tp, bool sl)
{
this->lastScouted = 0;
this->startLocation = sl;
this->tilePosition = tp;
}