diff options
author | aap <aap@papnet.eu> | 2020-05-09 21:18:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 21:18:00 +0200 |
commit | e4683a30741f9528aa0f62fc259660b66c53bbec (patch) | |
tree | 38b775b96a2f1bc3ef0020275bf6c18a5a0c310b /src/core/Placeable.h | |
parent | back to ped.ifp (diff) | |
parent | new curves + boat fix (diff) | |
download | re3-e4683a30741f9528aa0f62fc259660b66c53bbec.tar re3-e4683a30741f9528aa0f62fc259660b66c53bbec.tar.gz re3-e4683a30741f9528aa0f62fc259660b66c53bbec.tar.bz2 re3-e4683a30741f9528aa0f62fc259660b66c53bbec.tar.lz re3-e4683a30741f9528aa0f62fc259660b66c53bbec.tar.xz re3-e4683a30741f9528aa0f62fc259660b66c53bbec.tar.zst re3-e4683a30741f9528aa0f62fc259660b66c53bbec.zip |
Diffstat (limited to 'src/core/Placeable.h')
-rw-r--r-- | src/core/Placeable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/Placeable.h b/src/core/Placeable.h index 7e858283..26a2291a 100644 --- a/src/core/Placeable.h +++ b/src/core/Placeable.h @@ -16,7 +16,7 @@ public: m_matrix.GetPosition().y = y; m_matrix.GetPosition().z = z; } - void SetPosition(const CVector &pos) { m_matrix.GetPosition() = pos; } + void SetPosition(const CVector& pos) { m_matrix.GetPosition() = pos; } CVector &GetRight(void) { return m_matrix.GetRight(); } CVector &GetForward(void) { return m_matrix.GetForward(); } CVector &GetUp(void) { return m_matrix.GetUp(); } |