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