Zepha/src/client/gui/BoxElement.h

13 lines
195 B
C
Raw Normal View History

2021-08-19 13:33:08 -07:00
#include "Element.h"
namespace Gui {
class BoxElement: public Element {
public:
using Element::Element;
virtual void updateElement() override;
protected:
optional<any> curBg;
2021-08-19 13:33:08 -07:00
};
}