Switch static array definition to extern to prevent unused variable warnings

This commit is contained in:
Graham Pentheny
2025-08-22 01:39:14 -04:00
parent b31ed819d9
commit 5fc4886780
2 changed files with 13 additions and 11 deletions

View File

@@ -35,6 +35,18 @@
# define snprintf _snprintf
#endif
const char* toolNames[] = {
"None",
"Create Tiles",
"Highlight Tile Cache",
"Create Temp Obstacles",
"Test Navmesh",
"Prune Navmesh",
"Create Off-Mesh Connections",
"Create Convex Volumes",
"Create Crowds",
};
namespace
{