DamnCute/include/damncute/IRenderable.hh

15 lines
252 B
C++
Raw Normal View History

2016-05-29 16:10:44 +00:00
#ifndef IRENDERABLE_H_
# define IRENDERABLE_H_
# include <SFML/Graphics.hpp>
namespace DamnCute {
class IRenderable {
public:
virtual void update(sf::RenderTarget*) = 0;
virtual ~IRenderable() {}
};
}
#endif /* !IRENDERABLE_H_ */