cOMS/ui/UIPanel.h
Dennis Eichhorn 4f1cbd98f9
Some checks failed
Microsoft C++ Code Analysis / Analyze (push) Waiting to run
CodeQL / Analyze (${{ matrix.language }}) (autobuild, c-cpp) (push) Has been cancelled
started templating
2025-03-21 01:08:09 +00:00

14 lines
212 B
C

#ifndef COMS_UI_PANEL_H
#define COMS_UI_PANEL_H
#include "../stdlib/Types.h"
#include "attribute/UIAttributeDimension.h"
struct UIPanelState {
};
struct UIPanel {
UIAttributeDimension dimension;
};
#endif