1
0

Added static const, initialized fields.

This commit is contained in:
archshift
2014-04-26 15:32:14 -07:00
parent da931da603
commit e2194e6e90
4 changed files with 7 additions and 2 deletions

View File

@@ -21,7 +21,8 @@
cCommandBlockEntity::cCommandBlockEntity(int a_X, int a_Y, int a_Z, cWorld * a_World) :
super(E_BLOCK_COMMAND_BLOCK, a_X, a_Y, a_Z, a_World),
m_ShouldExecute(false),
m_IsPowered(false)
m_IsPowered(false),
m_Result(0)
{}