skizzle/block.hpp

19 lines
284 B
C++
Raw Normal View History

2016-03-08 16:48:54 +00:00
#ifndef PTF_BLOCK_HPP
#define PTF_BLOCK_HPP
2016-03-08 16:46:33 +00:00
#include "object.hpp"
2016-03-08 16:46:33 +00:00
#include <SFML/Graphics.hpp>
#include <iostream>
class Block : public Object {
2016-03-08 16:46:33 +00:00
public:
Block();
/**
* Dessin du bloc dans la fenêtre donnée
*/
2016-03-08 16:46:33 +00:00
void draw(sf::RenderWindow& window);
};
#endif