예제 #1
0
파일: map.cpp 프로젝트: brun123/otclient
bool Map::isLookPossible(const Position& pos)
{
    TilePtr tile = m_tiles[pos];
    if(tile)
        return tile->isLookPossible();
    return true;
}
예제 #2
0
파일: map.cpp 프로젝트: Xileck/otclient
bool Map::isLookPossible(const Position& pos)
{
    TilePtr tile = getTile(pos);
    return tile && tile->isLookPossible();
}