From e37d4911c750550896c4155f452736200d977b83 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Mon, 16 Jan 2023 02:51:22 -0500 Subject: Almost done... --- couche.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'couche.h') 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); -- cgit v1.2.3