Flecs v3.2
A fast entity component system (ECS) for C & C++
Loading...
Searching...
No Matches
mixin.inl
Go to the documentation of this file.
1
17int plecs_from_str(const char *name, const char *str) const {
18 return ecs_plecs_from_str(m_world, name, str);
19}
20
24int plecs_from_file(const char *filename) const {
25 return ecs_plecs_from_file(m_world, filename);
26}
27
FLECS_API int ecs_plecs_from_str(ecs_world_t *world, const char *name, const char *str)
Parse plecs string.
FLECS_API int ecs_plecs_from_file(ecs_world_t *world, const char *filename)
Parse plecs file.
int plecs_from_str(const char *name, const char *str) const
Load plecs string.
Definition mixin.inl:17
int plecs_from_file(const char *filename) const
Load plecs from file.
Definition mixin.inl:24