Remove unused code causing warning

This commit is contained in:
Jakob Botsch Nielsen 2018-06-16 01:33:36 +02:00 committed by Jakob Botsch Nielsen
parent 5c24b5960f
commit 6e36a351c2

View File

@ -224,24 +224,6 @@ void Sample_TileMesh::cleanup()
m_dmesh = 0;
}
static const int NAVMESHSET_MAGIC = 'M'<<24 | 'S'<<16 | 'E'<<8 | 'T'; //'MSET';
static const int NAVMESHSET_VERSION = 1;
struct NavMeshSetHeader
{
int magic;
int version;
int numTiles;
dtNavMeshParams params;
};
struct NavMeshTileHeader
{
dtTileRef tileRef;
int dataSize;
};
void Sample_TileMesh::handleSettings()
{
Sample::handleCommonSettings();