mirror of
https://github.com/JulianGro/overte.git
synced 2025-05-03 00:47:24 +02:00
fuck you, const!
This commit is contained in:
parent
46e5bf0435
commit
f96e9eb1e8
2 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ void ObjectAction::updateAction(btCollisionWorld* collisionWorld, btScalar delta
|
||||||
updateActionWorker(deltaTimeStep);
|
updateActionWorker(deltaTimeStep);
|
||||||
}
|
}
|
||||||
|
|
||||||
int ObjectAction::getEntityServerClockSkew() {
|
int ObjectAction::getEntityServerClockSkew() const {
|
||||||
auto nodeList = DependencyManager::get<NodeList>();
|
auto nodeList = DependencyManager::get<NodeList>();
|
||||||
|
|
||||||
auto ownerEntity = _ownerEntity.lock();
|
auto ownerEntity = _ownerEntity.lock();
|
||||||
|
|
|
@ -50,7 +50,7 @@ public:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
int getEntityServerClockSkew();
|
int getEntityServerClockSkew() const;
|
||||||
|
|
||||||
virtual btRigidBody* getRigidBody();
|
virtual btRigidBody* getRigidBody();
|
||||||
virtual glm::vec3 getPosition();
|
virtual glm::vec3 getPosition();
|
||||||
|
|
Loading…
Reference in a new issue