#ifndef PTF_BLOCK_HPP #define PTF_BLOCK_HPP #include #include class Block { protected: sf::Vector2i position; int charge; public: Block(); void draw(sf::RenderWindow& window); // getters et setters sf::Vector2i getPosition() { return position; } int getCharge() { return charge; } }; #endif