Merge remote-tracking branch 'Winterleaf/Development-Console' into defineconsolemethod

Conflicts:
	Engine/source/T3D/missionMarker.cpp
This commit is contained in:
Daniel Buckmaster 2014-12-21 21:23:55 +11:00
commit 9396ae7176
146 changed files with 1713 additions and 2122 deletions

View file

@ -30,6 +30,7 @@
#include "scene/sceneManager.h"
#include "platform/profiler.h"
#include "core/module.h"
#include "console/engineAPI.h"
extern bool gEditingMission;
@ -206,12 +207,12 @@ void PathManager::clearPaths()
#endif
}
ConsoleFunction(clearServerPaths, void, 1, 1, "")
DefineConsoleFunction( clearServerPaths, void, ( ), , "")
{
gServerPathManager->clearPaths();
}
ConsoleFunction(clearClientPaths, void, 1, 1, "")
DefineConsoleFunction( clearClientPaths, void, ( ), , "")
{
gClientPathManager->clearPaths();
}