GameKit  0.0.1a
C++ gamedev tools
SpriteView.hpp
Go to the documentation of this file.
1 /*
2  * =====================================================================================
3  *
4  * Filename: SpriteView.hpp
5  *
6  * Description:
7  *
8  * Created: 26/01/2018 01:29:20
9  *
10  * Author: Quentin Bazin, <quent42340@gmail.com>
11  *
12  * =====================================================================================
13  */
14 #ifndef GK_SPRITEVIEW_HPP_
15 #define GK_SPRITEVIEW_HPP_
16 
18 
19 namespace gk {
20 
21 class SpriteView : public AbstractView {
22  public:
23  void draw(const SceneObject &object, RenderTarget &target, RenderStates states) override;
24 };
25 
26 } // namespace gk
27 
28 #endif // GK_SPRITEVIEW_HPP_
void draw(const SceneObject &object, RenderTarget &target, RenderStates states) override
Definition: SpriteView.cpp:24