diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-16 03:26:28 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-16 03:26:28 -0500 |
commit | 20ae6ae3f82a4eeeb123d9c1f895f10c8967f44b (patch) | |
tree | da18c55250fb9f544b5b67aacc1a3fab4a7ccf75 /canevas.h | |
parent | 267868847b0885f60aaae43afd4f54ce028181d8 (diff) | |
parent | 5f8fa959dab1106105f9e58325f65d0b51bb1631 (diff) |
Merge branch 'development'
Diffstat (limited to 'canevas.h')
-rw-r--r-- | canevas.h | 23 |
1 files changed, 9 insertions, 14 deletions
@@ -22,22 +22,17 @@ class Canevas { public:
Canevas();
~Canevas();
-
- bool reinitialiser();
-
- bool activerCouche(int index);
- bool cacherCouche(int index);
-
- bool ajouterForme(Forme *p_forme);
- bool retirerForme(int index);
-
+ bool reinitialiser();
+ bool activerCouche(int index);
+ bool ajouterForme(Forme *p_forme);
+ bool retirerForme(int index);
double aire();
- bool translater(int deltaX, int deltaY);
- void afficher(ostream & s);
- bool reinitialiserCouche(int index);
-
+ bool translater(int deltaX, int deltaY);
+ void afficher(ostream &s);
+ void getEtats(ostream &s);
+ bool reinitialiserCouche(int index);
private:
- Couche couches[MAX_COUCHES];
+ Couche couches[MAX_COUCHES];
};
#endif
|