mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +00:00
Fix: removed 'virtual' for classes which doesn't have child.
This commit is contained in:
parent
e7fb6a54de
commit
b0fcc91058
2 changed files with 3 additions and 3 deletions
|
|
@ -127,7 +127,7 @@ public:
|
||||||
|
|
||||||
void breakProcess();
|
void breakProcess();
|
||||||
|
|
||||||
virtual void executionStopped(CodeBlock *code, U32 lineNumber);
|
void executionStopped(CodeBlock *code, U32 lineNumber);
|
||||||
void send(const char *s);
|
void send(const char *s);
|
||||||
void setDebugParameters(S32 port, const char *password, bool waitForClient);
|
void setDebugParameters(S32 port, const char *password, bool waitForClient);
|
||||||
void processConsoleLine(const char *consoleLine);
|
void processConsoleLine(const char *consoleLine);
|
||||||
|
|
|
||||||
|
|
@ -485,8 +485,8 @@ protected:
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
virtual void render( const TSRenderState &rdata );
|
void render( const TSRenderState &rdata );
|
||||||
virtual void render( const TSRenderState &rdata, S32 dl, F32 intraDL = 0.0f );
|
void render( const TSRenderState &rdata, S32 dl, F32 intraDL = 0.0f );
|
||||||
|
|
||||||
void animate() { animate( mCurrentDetailLevel ); }
|
void animate() { animate( mCurrentDetailLevel ); }
|
||||||
void animate(S32 dl);
|
void animate(S32 dl);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue