mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
16 lines
296 B
C++
16 lines
296 B
C++
|
#ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_TILESPOSITIONSRANGE_H
|
||
|
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_TILESPOSITIONSRANGE_H
|
||
|
|
||
|
#include "tileposition.hpp"
|
||
|
|
||
|
namespace DetourNavigator
|
||
|
{
|
||
|
struct TilesPositionsRange
|
||
|
{
|
||
|
TilePosition mBegin;
|
||
|
TilePosition mEnd;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|