cOMS/ui/UILocation.h
2024-08-04 00:09:16 +02:00

13 lines
202 B
C

#ifndef TOS_UI_LOCATION_H
#define TOS_UI_LOCATION_H
enum UILocation {
UI_LOCATION_LEFT,
UI_LOCATION_CENTER,
UI_LOCATION_RIGHT,
UI_LOCATION_FLEX_ROW,
UI_LOCATION_FLEX_COL
};
#endif