1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-30 16:17:46 +00:00

Build fix

This commit is contained in:
mordred 2019-01-24 13:33:30 +01:00
parent 27668368cc
commit 1b1fcfc09b

View file

@ -8,13 +8,14 @@
namespace Sapphire::World::Navi namespace Sapphire::World::Navi
{ {
const int32_t MAX_POLYS = 256;
const int32_t MAX_SMOOTH = 2048;
const int32_t NAVMESHSET_MAGIC = 'M' << 24 | 'S' << 16 | 'E' << 8 | 'T'; //'MSET'
const int32_t NAVMESHSET_VERSION = 1;
class NaviProvider class NaviProvider
{ {
const int32_t NAVMESHSET_MAGIC = 'M' << 24 | 'S' << 16 | 'E' << 8 | 'T'; //'MSET'
const int32_t NAVMESHSET_VERSION = 1;
struct NavMeshSetHeader struct NavMeshSetHeader
{ {
int32_t magic; int32_t magic;
@ -29,9 +30,6 @@ namespace Sapphire::World::Navi
int32_t dataSize; int32_t dataSize;
}; };
const int32_t MAX_POLYS = 256;
const int32_t MAX_SMOOTH = 2048;
public: public:
explicit NaviProvider( const std::string& internalName ); explicit NaviProvider( const std::string& internalName );