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