mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
Remove CInterface script hooks, superseded by console refactor
This commit is contained in:
parent
a4e3a000fb
commit
5615cc33d8
7 changed files with 0 additions and 219 deletions
|
|
@ -30,7 +30,6 @@
|
|||
#endif
|
||||
|
||||
#include "script.h"
|
||||
#include "cinterface/cinterface.h"
|
||||
#include "core/strings/findMatch.h"
|
||||
#include "core/strings/stringUnit.h"
|
||||
#include "core/strings/unicode.h"
|
||||
|
|
@ -2407,10 +2406,6 @@ DefineEngineFunction( isMethod, bool, ( const char* nameSpace, const char* metho
|
|||
"@return True if the method exists, false if not\n"
|
||||
"@ingroup Scripting\n")
|
||||
{
|
||||
if (CInterface::isMethod(nameSpace, method)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
Namespace* ns = Namespace::find( StringTable->insert( nameSpace ) );
|
||||
Namespace::Entry* nse = ns->lookup( StringTable->insert( method ) );
|
||||
if( !nse )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue