SUNENGINE 0.0.2
A simple and bright C++ game engine.
 
Loading...
Searching...
No Matches
UIDirection.h
1#ifndef UIDirection_H
2#define UIDirection_H
3
4/*
5* @enum UIDirection
6 * @brief Enumeration of possible directions for UI components.
7 *
8 * This enum defines the possible directions in which UI components can be arranged or oriented.
9 * It is used in classes like Dropdown to specify the layout direction of options.
10 */
11enum class UIDirection
12{
13 Up,
14 Down,
15 Left,
16 Right,
17};
18
19#endif