Oxygen Engine
Modern C++ 3D Engine using OpenGL
Loading...
Searching...
No Matches
image.h
1#ifndef OE_GUI_COMPONENT_IMAGE_H
2#define OE_GUI_COMPONENT_IMAGE_H
3
4#include "util/has_image.h"
5#include "util/has_color.h"
6
7#include "../component.h"
8
9namespace oe::gui::component
10{
11 class Image : public Component, public HasImage, public HasColor
12 {
13 public:
15 void generate();
16 };
17}
18#endif
Definition component.h:22
T * createChild(Args &&... args)
Definition component.h:64
Definition has_color.h:10
Definition has_image.h:12
Definition image.h:12
Definition texture.h:27
UI components.
Definition component.h:15