16 lines
328 B
C++
16 lines
328 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <ikarus/values/value.hpp>
|
|
|
|
struct IkarusEntity {
|
|
constinit static inline auto object_name = "entity";
|
|
constinit static inline auto table_name = "entities";
|
|
|
|
IkarusEntity(struct IkarusProject * project, int64_t id);
|
|
|
|
struct IkarusProject * project;
|
|
int64_t id;
|
|
};
|