This commit is contained in:
Seth Alves 2015-04-24 14:43:39 -07:00
parent e7c6ee597a
commit 2a8fbeca32

View file

@ -67,7 +67,12 @@ public:
quint8 getAccelerationNearlyGravityCount() { return _accelerationNearlyGravityCount; }
virtual EntityItem* getEntity() const { return _entity; }
virtual void setShouldClaimSimulationOwnership(bool value) { _shouldClaimSimulationOwnership = value; }
virtual void setShouldClaimSimulationOwnership(bool value) {
if (value) {
qDebug() << "setShouldClaimSimulationOwnership to TRUE";
}
_shouldClaimSimulationOwnership = value;
}
virtual bool getShouldClaimSimulationOwnership() { return _shouldClaimSimulationOwnership; }
protected: