| 113 | } |
| 114 | |
| 115 | Tile* GameEntity::getPositionTile() const |
| 116 | { |
| 117 | const Ogre::Vector3& tempPosition = getPosition(); |
| 118 | |
| 119 | return getGameMap()->getTile(Helper::round(tempPosition.x), |
| 120 | Helper::round(tempPosition.y)); |
| 121 | } |
| 122 | |
| 123 | void GameEntity::addEntityToPositionTile() |
| 124 | { |
no test coverage detected