11class Scene :
public std::enable_shared_from_this<Scene> {
13 static auto create() {
return std::shared_ptr<Scene>(
new Scene()); }
15 auto create_entity(
const std::string& name =
"entity") -> flecs::entity;
auto create_entity(const std::string &name="entity") -> flecs::entity
Definition scene.cpp:9
auto world() const -> const flecs::world &
Definition scene.hpp:17
flecs::world ecs_
Definition scene.hpp:23
static auto create()
Definition scene.hpp:13
auto world() -> flecs::world &
Definition scene.hpp:18
Definition components.cpp:3