bwidgets/vertical_layout.hpp

15 lines
214 B
C++

#ifndef VERTICAL_LAYOUT_HPP
#define VERTICAL_LAYOUT_HPP
#include "layout.hpp"
class Vertical_Layout : public Layout
{
protected:
void _update_layout();
public:
Vertical_Layout(SDL_Renderer*);
};
#endif