intermediate commit

Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
folling 2023-11-24 14:52:46 +01:00 committed by Folling
parent 82e5309f80
commit ea221cdf85
Signed by: folling
SSH key fingerprint: SHA256:S9qEx5WCFFLK49tE/LKnKuJYM5sw+++Dn6qJbbyxnCY
11 changed files with 175 additions and 175 deletions

View file

@ -14,18 +14,12 @@ IKARUS_BEGIN_HEADER
enum IkarusObjectType {
/// \brief Not an object or no object.
IkarusObjectType_None = 0,
/// \brief An IkarusBlueprint.
IkarusObjectType_Blueprint = 0b00000001,
/// \brief An IkarusProperty.
IkarusObjectType_Property = 0b00000010,
/// \brief An IkarusEntity.
IkarusObjectType_Entity = 0b00000011,
/// \brief An IkarusBlueprintFolder
IkarusObjectType_BlueprintFolder = 0b01000001,
/// \brief An IkarusPropertyFolder
IkarusObjectType_PropertyFolder = 0b01000010,
/// \brief An IkarusEntityFolder
IkarusObjectType_EntityFolder = 0b01000011,
/// \brief An IkarusProperty.
IkarusObjectType_Property = 0b00000010,
/// \brief An IkarusBlueprint.
IkarusObjectType_Blueprint = 0b00000001,
};
IKARUS_END_HEADER

View file

@ -79,6 +79,7 @@ IKA_API void ikarus_property_settings_visit(
void * data
);
/// \see ikarus_property_settings_visit
IKA_API void ikarus_property_settings_visit_const(
struct IkarusPropertySettings const * settings,
void (*toggle_property_visitor)(struct IkarusTogglePropertySettings const * settings, void * data),