9 lines
215 B
C
9 lines
215 B
C
/* NOTE: UI flags are located here since they are shared between application & shader code */
|
|
|
|
Enum(UI_Flag)
|
|
{
|
|
UI_Flag_None = 0,
|
|
UI_Flag_DrawText = (1 << 0),
|
|
UI_Flag_DrawImage = (1 << 1),
|
|
};
|