sensibly initialize _shouldStop to false

This commit is contained in:
Stephen Birarda 2013-09-27 16:23:07 -07:00
parent 1189ac2216
commit ad8c676fea

View file

@ -16,7 +16,10 @@
#include "Agent.h"
#include "voxels/VoxelScriptingInterface.h"
Agent::Agent(const unsigned char* dataBuffer, int numBytes) : Assignment(dataBuffer, numBytes) {
Agent::Agent(const unsigned char* dataBuffer, int numBytes) :
Assignment(dataBuffer, numBytes),
_shouldStop(false)
{
}