1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 20:53:50 +00:00

Merge branch 'includes_detournavigator' into 'master'

Remove some superfluous includes in components/detournavigator

See merge request OpenMW/openmw!860
This commit is contained in:
elsid 2021-05-14 21:09:22 +00:00
commit eeba92d48b
9 changed files with 0 additions and 14 deletions

View file

@ -4,7 +4,6 @@
#include <components/misc/rng.hpp>
#include <DetourCommon.h>
#include <DetourNavMesh.h>
#include <DetourNavMeshQuery.h>

View file

@ -14,8 +14,6 @@
#include <DetourNavMesh.h>
#include <DetourNavMeshQuery.h>
#include <LinearMath/btVector3.h>
#include <components/misc/convert.hpp>
#include <osg/Vec3f>

View file

@ -1,6 +1,5 @@
#include "makenavmesh.hpp"
#include "debug.hpp"
#include "dtstatus.hpp"
#include "exceptions.hpp"
#include "recastmesh.hpp"
#include "settings.hpp"

View file

@ -2,10 +2,8 @@
#define OPENMW_COMPONENTS_DETOURNAVIGATOR_MAKENAVMESH_H
#include "offmeshconnectionsmanager.hpp"
#include "settings.hpp"
#include "navmeshcacheitem.hpp"
#include "tileposition.hpp"
#include "tilebounds.hpp"
#include "sharednavmesh.hpp"
#include "navmeshtilescache.hpp"

View file

@ -5,8 +5,6 @@
#include <components/esm/loadpgrd.hpp>
#include <components/misc/coordinateconverter.hpp>
#include <Recast.h>
namespace DetourNavigator
{
NavigatorImpl::NavigatorImpl(const Settings& settings)

View file

@ -4,7 +4,6 @@
#include "asyncnavmeshupdater.hpp"
#include "cachedrecastmeshmanager.hpp"
#include "offmeshconnectionsmanager.hpp"
#include "sharednavmesh.hpp"
#include "recastmeshtiles.hpp"
#include <BulletCollision/CollisionShapes/btHeightfieldTerrainShape.h>

View file

@ -2,7 +2,6 @@
#include "settings.hpp"
#include "findsmoothpath.hpp"
#include <DetourCommon.h>
#include <DetourNavMesh.h>
#include <DetourNavMeshQuery.h>

View file

@ -11,8 +11,6 @@
#include <vector>
#include <tuple>
#include <osg/Vec3f>
#include <LinearMath/btTransform.h>
namespace DetourNavigator

View file

@ -1,7 +1,5 @@
#include "recastmeshmanager.hpp"
#include <BulletCollision/CollisionShapes/btHeightfieldTerrainShape.h>
namespace DetourNavigator
{
RecastMeshManager::RecastMeshManager(const Settings& settings, const TileBounds& bounds, std::size_t generation)