Oxygen Engine
Modern C++ 3D Engine using OpenGL
Loading...
Searching...
No Matches
components.h
1#ifndef OE_GUI_COMPONENTS_H
2#define OE_GUI_COMPONENTS_H
3
4// Shorthand file to include all GUI components at once
5#include "component/button.h"
6#include "component/checkbox.h"
7#include "component/combobox.h"
8#include "component/image.h"
9#include "component/label.h"
10#include "component/layout.h"
11#include "component/progress.h"
12#include "component/slider.h"
13#include "component/textbox.h"
14#include "component/window.h"
15
16#endif