8#ifndef URANUS_ENTITYMANAGER_HPP
9#define URANUS_ENTITYMANAGER_HPP
20 void addPrefab(
const std::shared_ptr<engine::Base> &prefab);
22 void killAllPrefabs();
24 std::shared_ptr<engine::Base> getPrefabByName(
const std::string &prefabName);
27 std::vector<std::shared_ptr<engine::Base>> _prefabs;
Definition: EntityManager.hpp:14