summaryrefslogtreecommitdiffstats
path: root/source/cSimulator.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cSimulator.h')
-rw-r--r--source/cSimulator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cSimulator.h b/source/cSimulator.h
index 2aaabe184..e045c18a8 100644
--- a/source/cSimulator.h
+++ b/source/cSimulator.h
@@ -9,9 +9,9 @@ public:
~cSimulator();
virtual void Simulate( float a_Dt ) = 0;
- virtual inline void WakeUp( int a_X, int a_Y, int a_Z ); //Used often so inline saves some calls
+ virtual void WakeUp( int a_X, int a_Y, int a_Z );
- virtual inline bool IsAllowedBlock( char a_BlockID ) = 0;
+ virtual bool IsAllowedBlock( char a_BlockID ) = 0;
protected:
virtual void AddBlock(int a_X, int a_Y, int a_Z) = 0;