#ifndef DEF_BUT_H #define DEF_BUT_H #include #include "Bloc.h" class But: public Bloc{ public: But(int ,int); virtual bool IsCassable(); virtual bool IsDetruit(); std::string Espece(){return "But";} virtual bool IsSolide(){ return false; } }; #endif