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
{
class NaviProvider
{
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
{
struct NavMeshSetHeader
{
int32_t magic;
@ -29,9 +30,6 @@ namespace Sapphire::World::Navi
int32_t dataSize;
};
const int32_t MAX_POLYS = 256;
const int32_t MAX_SMOOTH = 2048;
public:
explicit NaviProvider( const std::string& internalName );