diff options
Diffstat (limited to 'source/cFireSimulator.h')
-rw-r--r-- | source/cFireSimulator.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source/cFireSimulator.h b/source/cFireSimulator.h index fba71fece..ef2da6756 100644 --- a/source/cFireSimulator.h +++ b/source/cFireSimulator.h @@ -25,8 +25,9 @@ protected: 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;
+ typedef std::vector <Vector3i> BlockList;
+ BlockList *m_Blocks;
+ BlockList *m_Buffer;
- std::vector <Vector3i *> *m_BurningBlocks;
+ BlockList *m_BurningBlocks;
};
\ No newline at end of file |