Add generic property matchers for menus

This commit is contained in:
Jan
2021-11-01 12:28:40 +01:00
parent 77603a2617
commit 2aa0eb2a8c
17 changed files with 375 additions and 79 deletions

View File

@ -11,7 +11,9 @@ namespace menu
{
public:
std::string m_name;
bool m_fullscreen;
bool m_full_screen;
bool m_screen_space;
bool m_decoration;
std::vector<std::unique_ptr<CommonItemDef>> m_items;
};

View File

@ -0,0 +1,16 @@
#pragma once
namespace menu
{
union CommonColor
{
struct
{
double r;
double g;
double b;
double a;
};
double array[4];
};
}