Génération d'un sol

This commit is contained in:
Amaury
2020-04-14 09:01:50 +02:00
parent 4f9c15a206
commit b5728a5076
2 changed files with 13 additions and 2 deletions

View File

@ -22,11 +22,14 @@ public:
void _init();
void _ready();
public:
private:
void AjoutMur(int sizeX, int sizeY, int posX, int posY);
void AjoutSolSolide(int sizeX, int sizeY, int posX, int posY);
void AjoutSolTraversable(int sizeX, int sizeY, int posX, int posY);
void SuppressionTout();
public:
void GenerationCarte();
};