mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
Replaced a ton of ConsoleMethods with the DefineConsoleMethod Macro.
This commit is contained in:
parent
378a933894
commit
acb192e2a5
133 changed files with 1716 additions and 2087 deletions
|
|
@ -267,6 +267,11 @@ void NetStringTable::dumpToConsole()
|
|||
0x11 );
|
||||
}
|
||||
|
||||
|
||||
|
||||
#endif // DEBUG
|
||||
|
||||
|
||||
DefineEngineFunction( dumpNetStringTable, void, (),,
|
||||
"@brief Dump the current contents of the networked string table to the console.\n\n"
|
||||
"The results are returned in three columns. The first column is the network string ID. "
|
||||
|
|
@ -275,7 +280,8 @@ DefineEngineFunction( dumpNetStringTable, void, (),,
|
|||
"@note This function is available only in debug builds.\n\n"
|
||||
"@ingroup Networking" )
|
||||
{
|
||||
#ifdef TORQUE_DEBUG
|
||||
gNetStringTable->dumpToConsole();
|
||||
#endif
|
||||
}
|
||||
|
||||
#endif // DEBUG
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue