MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / call

Method call

Engine/source/console/engineAPI.h:1148–1152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1146
1147 template< typename R, typename ...ArgTs >
1148 R call(ArgTs ...args) const
1149 {
1150 typedef R( FunctionType )( EngineObject*, ArgTs... );
1151 return R( reinterpret_cast< FunctionType* >( const_cast<void*>(mFn) )( mThis, args... ) );
1152 }
1153
1154};
1155

Callers 8

FFunction · 0.45
EFunction · 0.45
cFunction · 0.45
FFunction · 0.45
EFunction · 0.45
cFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected