mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 23:08:05 -05:00
Add generic property matchers for menus
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
16
src/ObjLoading/Parsing/Menu/Domain/CommonMenuTypes.h
Normal file
16
src/ObjLoading/Parsing/Menu/Domain/CommonMenuTypes.h
Normal file
@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
namespace menu
|
||||
{
|
||||
union CommonColor
|
||||
{
|
||||
struct
|
||||
{
|
||||
double r;
|
||||
double g;
|
||||
double b;
|
||||
double a;
|
||||
};
|
||||
double array[4];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user