add flatbuffers support and initial rewrite
Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
parent
5f7a62ecb7
commit
4d7bf09c4e
72 changed files with 3929 additions and 1403 deletions
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
#include <ikarus/objects/object.hpp>
|
||||
|
||||
struct IkarusBlueprint : IkarusObject {
|
||||
struct IkarusBlueprint : public IkarusObject {
|
||||
public:
|
||||
IkarusBlueprint(struct IkarusProject * project, IkarusId id);
|
||||
IkarusBlueprint(struct IkarusProject * project, int64_t id);
|
||||
|
||||
IkarusBlueprint(IkarusBlueprint const &) = default;
|
||||
IkarusBlueprint(IkarusBlueprint &&) = default;
|
||||
|
|
@ -15,7 +15,5 @@ public:
|
|||
~IkarusBlueprint() override = default;
|
||||
|
||||
public:
|
||||
inline std::string_view get_table_name() const noexcept override {
|
||||
return "blueprints";
|
||||
}
|
||||
std::string_view get_table_name() const noexcept override;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue