Atributo bypass movido para a classe Thing
[Projeto-PCG.git] / plataform.h
blob300b8079036eb41a0918ff2c81bb295f17fa769f
1 #ifndef PLATAFORM_H
2 #define PLATAFORM_H
4 #include "geometry.h"
6 class Plataform {
7 private:
8 Linha line;
9 bool passable;
10 public:
11 Plataform(Linha aline, bool pass);
12 Linha getLine() {return line;};
13 bool isPassable() {return passable;};
14 void setPassable() {passable = true;}
15 void desenha();
18 #endif