Ajout des TextureAtlas et affichage de RemotePlayer

This commit is contained in:
Claudel-D-Roy
2023-11-20 14:28:54 -05:00
parent 4751b2350a
commit 85b8f4b94b
11 changed files with 49 additions and 14 deletions

View File

@@ -13,7 +13,7 @@
class RemotePlayer : public Player {
public:
enum Anim: uint8_t { STILL = 1, RUNNING = 2, JUMPING = 4, SHOOTING = 8, POWERUP = 16, DEAD = 32 };
enum Anim: uint8_t { STILL = 1, RUNNING = 2, JUMPING = 4, SHOOTING = 8, POWERUP = 16, DEAD = 32 }; // A REVOIR VOIR DEFINE.H POUR LES ANIMES
RemotePlayer(netprot::PlayerInfo pinfo);
RemotePlayer(netprot::PlayerInfo pinfo, const Vector3f& pos);