Pastebin

New pastes are no longer accepted · Stats

Latest Pastes

bool MapHarvestable code Harvesting by

bool Map::Harvestable(unsigned char x, unsigned char y)
{
	return (InBounds(x, y) && this->tiles[y]->at(x)->Harvestable());
}