add flatbuffers support and initial rewrite
Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
parent
7e883d24eb
commit
98cb7a44ef
72 changed files with 3929 additions and 1403 deletions
|
|
@ -1,14 +1,14 @@
|
|||
#pragma once
|
||||
|
||||
#include <ikarus/objects/properties/property.hpp>
|
||||
#include <ikarus/objects/properties/property_type.h>
|
||||
#include <ikarus/values/number_value.hpp>
|
||||
#include <ikarus/values/value_type.h>
|
||||
|
||||
struct IkarusNumberProperty : IkarusProperty {
|
||||
struct IkarusNumberProperty : public IkarusProperty {
|
||||
public:
|
||||
using value_type = IkarusNumberValue;
|
||||
constexpr auto static PropertyType = IkarusPropertyType_Number;
|
||||
constexpr auto static PropertyType = IkarusValueType_Number;
|
||||
|
||||
public:
|
||||
IkarusNumberProperty(struct IkarusProject * project, IkarusId id);
|
||||
IkarusNumberProperty(struct IkarusProject * project, int64_t id);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue