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