summaryrefslogtreecommitdiff
path: root/forme.h
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-01-16 02:51:22 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2023-01-16 02:51:22 -0500
commite37d4911c750550896c4155f452736200d977b83 (patch)
treed9aa75757d6bb22e0b1e2a55b7cc047f9e961662 /forme.h
parent766f377da3f63ea674ae3903c95cf0b512834049 (diff)
Almost done...
Diffstat (limited to 'forme.h')
-rw-r--r--forme.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/forme.h b/forme.h
index c719366..f1fb5b6 100644
--- a/forme.h
+++ b/forme.h
@@ -19,11 +19,11 @@ class Forme {
public:
Forme(int x = 0, int y = 0);
virtual ~Forme();
- void translater(int deltaX, int deltaY);
+ void translater(int deltaX, int deltaY);
Coordonnee getAncrage();
- void setAncrage(Coordonnee c);
- virtual double aire() = 0;
- virtual void afficher(ostream & s) = 0;
+ void setAncrage(Coordonnee c);
+ virtual double aire() = 0;
+ virtual void afficher(ostream & s) = 0;
protected:
Coordonnee ancrage;
};