mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
Eliminate DefineConsoleFunction
This commit is contained in:
parent
037d089c4d
commit
5bde18143f
55 changed files with 314 additions and 332 deletions
|
|
@ -41,7 +41,7 @@
|
|||
|
||||
ConsoleFunctionGroupBegin(ConsoleDoc, "Console self-documentation functions. These output psuedo C++ suitable for feeeding through Doxygen or another auto documentation tool.");
|
||||
|
||||
DefineConsoleFunction( dumpConsoleClasses, void, (bool dumpScript, bool dumpEngine), ( true, true ),
|
||||
DefineEngineFunction( dumpConsoleClasses, void, (bool dumpScript, bool dumpEngine), ( true, true ),
|
||||
"@brief Dumps all declared console classes to the console.\n\n"
|
||||
"@param dumpScript Optional parameter specifying whether or not classes defined in script should be dumped.\n"
|
||||
"@param dumpEngine Optional parameter specifying whether or not classes defined in the engine should be dumped.\n"
|
||||
|
|
@ -50,7 +50,7 @@ DefineConsoleFunction( dumpConsoleClasses, void, (bool dumpScript, bool dumpEngi
|
|||
Namespace::dumpClasses( dumpScript, dumpEngine );
|
||||
}
|
||||
|
||||
DefineConsoleFunction(dumpConsoleFunctions, void, ( bool dumpScript, bool dumpEngine ), ( true, true ),
|
||||
DefineEngineFunction(dumpConsoleFunctions, void, ( bool dumpScript, bool dumpEngine ), ( true, true ),
|
||||
"@brief Dumps all declared console functions to the console.\n"
|
||||
"@param dumpScript Optional parameter specifying whether or not functions defined in script should be dumped.\n"
|
||||
"@param dumpEngine Optional parameter specitying whether or not functions defined in the engine should be dumped.\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue