This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/server/player.cpp
T

9 lines
133 B
C++

#include "player.hpp"
Player::Player(int id) : clientID(id) {
//
}
void Player::Update(int delta) {
position += motion * delta;
}