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.hpp
T
2013-05-10 19:57:53 +10:00

26 lines
279 B
C++

#ifndef PLAYER_HPP_
#define PLAYER_HPP_
#include "vector2.hpp"
#include <string>
//TODO
class Player {
public:
Player();
~Player();
void Update(int);
Vector2 GetPosition();
private:
int clientID;
Vector2 position;
Vector2 motion;
std::string avatarName;
};
#endif