summaryrefslogtreecommitdiffstats
path: root/source/cFireSimulator.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cFireSimulator.h')
-rw-r--r--source/cFireSimulator.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/cFireSimulator.h b/source/cFireSimulator.h
index b42131ff3..fba71fece 100644
--- a/source/cFireSimulator.h
+++ b/source/cFireSimulator.h
@@ -13,17 +13,17 @@ public:
virtual void Simulate( float a_Dt );
- virtual inline bool IsAllowedBlock( char a_BlockID );
+ virtual bool IsAllowedBlock( char a_BlockID );
- virtual inline bool IsBurnable( char a_BlockID );
- virtual inline bool IsForeverBurnable( char a_BlockID );
- virtual inline bool FiresForever( char a_BlockID );
+ virtual bool IsBurnable( char a_BlockID );
+ virtual bool IsForeverBurnable( char a_BlockID );
+ virtual bool FiresForever( char a_BlockID );
protected:
virtual void AddBlock(int a_X, int a_Y, int a_Z);
virtual void _AddBlock(int a_X, int a_Y, int a_Z);
- virtual inline bool BurnBlockAround(int a_X, int a_Y, int a_Z);
- virtual inline bool BurnBlock(int a_X, int a_Y, int a_Z);
+ virtual bool BurnBlockAround(int a_X, int a_Y, int a_Z);
+ virtual bool BurnBlock(int a_X, int a_Y, int a_Z);
std::vector <Vector3i *> *m_Blocks;
std::vector <Vector3i *> *m_Buffer;