/* * ===================================================================================== * * Filename: Crosshair.hpp * * Description: * * Created: 14/06/2018 18:09:45 * * Author: Quentin Bazin, * * ===================================================================================== */ #ifndef CROSSHAIR_HPP_ #define CROSSHAIR_HPP_ #include "IDrawable.hpp" #include "VertexBuffer.hpp" class Crosshair : public IDrawable { public: Crosshair(); private: void draw(RenderTarget &target, RenderStates states) const override; VertexBuffer m_vbo; }; #endif // CROSSHAIR_HPP_