mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 22:28:37 +02:00
Merge pull request #991 from birarda/master
initialize _shouldStop for Agent instance to false
This commit is contained in:
commit
6e99955e9d
1 changed files with 4 additions and 1 deletions
|
@ -16,7 +16,10 @@
|
||||||
#include "Agent.h"
|
#include "Agent.h"
|
||||||
#include "voxels/VoxelScriptingInterface.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)
|
||||||
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue