mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
Add missing constructor
This commit is contained in:
@@ -84,13 +84,21 @@ public:
|
||||
, description(desc)
|
||||
{}
|
||||
|
||||
constexpr PropertyInfo(const char* ident, const char* gui, const char* desc,
|
||||
Visibility vis)
|
||||
: identifier(ident)
|
||||
, guiName(gui)
|
||||
, description(desc)
|
||||
, visibility(vis)
|
||||
{}
|
||||
|
||||
/// The unique identifier that is part of the fully qualified URI of this Property
|
||||
const char* identifier;
|
||||
/// The name that is displayed in the user interface
|
||||
const char* guiName;
|
||||
/// The user facing description of this Property
|
||||
const char* description;
|
||||
/// Determins the visibility of this Property in the user interface
|
||||
/// Determines the visibility of this Property in the user interface
|
||||
Visibility visibility = Visibility::All;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user