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,10 +2,9 @@
|
|||
|
||||
#include <ikarus/objects/object.hpp>
|
||||
|
||||
struct IkarusEntity : IkarusObject {
|
||||
struct IkarusEntity : public IkarusObject {
|
||||
public:
|
||||
inline IkarusEntity(struct IkarusProject * project, IkarusId id):
|
||||
IkarusObject{project, id} {}
|
||||
inline IkarusEntity(struct IkarusProject * project, int64_t id);
|
||||
|
||||
IkarusEntity(IkarusEntity const &) = default;
|
||||
IkarusEntity(IkarusEntity &&) = default;
|
||||
|
|
@ -16,7 +15,5 @@ public:
|
|||
~IkarusEntity() override = default;
|
||||
|
||||
public:
|
||||
inline std::string_view get_table_name() const noexcept override {
|
||||
return "entities";
|
||||
}
|
||||
std::string_view get_table_name() const noexcept override;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue