mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-30 08:07:46 +00:00
Build fix
This commit is contained in:
parent
27668368cc
commit
1b1fcfc09b
1 changed files with 5 additions and 7 deletions
|
@ -8,13 +8,14 @@
|
|||
|
||||
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
|
||||
{
|
||||
|
||||
const int32_t NAVMESHSET_MAGIC = 'M' << 24 | 'S' << 16 | 'E' << 8 | 'T'; //'MSET'
|
||||
const int32_t NAVMESHSET_VERSION = 1;
|
||||
|
||||
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 );
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue