engine/include/components/ui_element.hpp

12 lines
188 B
C++
Raw Normal View History

2023-05-01 12:55:49 +00:00
#ifndef ENGINE_INCLUDE_COMPONENTS_UI_ELEMENT_H_
#define ENGINE_INCLUDE_COMPONENTS_UI_ELEMENT_H_
2023-02-24 16:35:27 +00:00
namespace engine {
2023-05-01 12:55:49 +00:00
struct UIElementComponent {
int n;
};
2023-02-24 16:35:27 +00:00
2023-05-01 12:55:49 +00:00
} // namespace engine
#endif