tools build requirements

This commit is contained in:
marauder2k7 2025-08-03 10:18:23 +01:00
parent c2b347af7c
commit f691188f74
3 changed files with 10 additions and 6 deletions

View file

@ -1,7 +1,7 @@
#include "platform/platform.h"
#include "navigation/navMeshTool.h"
#ifdef TORQUE_TOOLS
#include "util/undo.h"
#include "math/mMath.h"
#include "math/mathUtils.h"
@ -37,3 +37,4 @@ NavMeshTool::NavMeshTool()
NavMeshTool::~NavMeshTool()
{
}
#endif

View file

@ -1,7 +1,7 @@
#pragma once
#ifndef _NAVMESH_TOOL_H_
#define _NAVMESH_TOOL_H_
#ifdef TORQUE_TOOLS
#ifndef _SIMBASE_H_
#include "console/simBase.h"
#endif
@ -54,5 +54,5 @@ public:
virtual void onUndoAction() {}
};
#endif
#endif // !_NAVMESH_TOOL_H_