mirror of
https://forge.univ-lyon1.fr/tplifap4/dungeonanddeamon.git
synced 2024-02-27 13:31:50 +01:00
18 lines
176 B
C++
18 lines
176 B
C++
#pragma once
|
|
#include "Player.h"
|
|
|
|
class GestionPlayer
|
|
{
|
|
public:
|
|
Player p;
|
|
|
|
public:
|
|
void droit();
|
|
void gauche();
|
|
void bas();
|
|
void saut();
|
|
void idle();
|
|
void attack();
|
|
};
|
|
|