summaryrefslogtreecommitdiff
path: root/couche.h
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-01-16 03:26:28 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2023-01-16 03:26:28 -0500
commit20ae6ae3f82a4eeeb123d9c1f895f10c8967f44b (patch)
treeda18c55250fb9f544b5b67aacc1a3fab4a7ccf75 /couche.h
parent267868847b0885f60aaae43afd4f54ce028181d8 (diff)
parent5f8fa959dab1106105f9e58325f65d0b51bb1631 (diff)
Merge branch 'development'
Diffstat (limited to 'couche.h')
-rw-r--r--couche.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/couche.h b/couche.h
index 4ef44a2..ec71444 100644
--- a/couche.h
+++ b/couche.h
@@ -19,18 +19,15 @@
class Couche {
private:
- int state;
+ int state;
Vecteur vecteur;
public:
- // Initialisation
Couche();
~Couche();
- // Informations
int getEtat();
Forme *getForme(int index);
double aire();
void afficher(ostream &s);
- // Modifications
bool changerEtat(int newState);
bool translater(int deltaX, int deltaY);
bool ajouterForme(Forme *f);