libikarus/src/objects/properties/toggle_property.cpp
Folling 2e41c36d84
make values capable of being a list & add boost
Signed-off-by: Folling <mail@folling.io>
2025-04-15 12:08:01 +02:00

10 lines
318 B
C++

#include "toggle_property.hpp"
IkarusToggleProperty::IkarusToggleProperty(IkarusProject * project, IkarusId id):
IkarusProperty{project, id, this} {}
IkarusToggleProperty * ikarus_toggle_property_create(
struct IkarusProject * project, char const * name, struct IkarusPropertySource * property_source
) {
}