add src/ikarus subdir and make names unique for objects per scope
Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
parent
c65211e4ff
commit
5dce2ced94
51 changed files with 590 additions and 735 deletions
14
src/ikarus/objects/properties/number_property.hpp
Normal file
14
src/ikarus/objects/properties/number_property.hpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#pragma once
|
||||
|
||||
#include <ikarus/objects/properties/property.hpp>
|
||||
#include <ikarus/objects/properties/property_type.h>
|
||||
#include <ikarus/values/number_value.hpp>
|
||||
|
||||
struct IkarusNumberProperty : IkarusProperty {
|
||||
public:
|
||||
using value_type = IkarusNumberValue;
|
||||
constexpr auto static PropertyType = IkarusPropertyType_Number;
|
||||
|
||||
public:
|
||||
IkarusNumberProperty(struct IkarusProject * project, IkarusId id);
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue