This commit is contained in:
MarcEricMartel 2023-10-27 13:55:15 -04:00
parent 67a49a4cad
commit 57d60e02a7

View File

@ -209,6 +209,8 @@ void Player::Teleport(int& x, int& z) {
m_position.z -= z * CHUNK_SIZE_Z; m_position.z -= z * CHUNK_SIZE_Z;
} }
uint64_t Player::getId() const { return id; }
Vector3f Player::InterpolatePosition(const Vector3f& vec1, const Vector3f& vec2, const Timestamp& tim1, const Timestamp& tim2, const Timestamp& now) { Vector3f Player::InterpolatePosition(const Vector3f& vec1, const Vector3f& vec2, const Timestamp& tim1, const Timestamp& tim2, const Timestamp& now) {
return Vector3f(); return Vector3f();
} }