| 150 | } |
| 151 | |
| 152 | Entity * EntityManager::CreatePlayer() |
| 153 | { |
| 154 | Entity *res = m_store.get(); |
| 155 | m_live_entlist.insert(res); |
| 156 | initializeNewPlayerEntity(*res); |
| 157 | return res; |
| 158 | } |
| 159 | |
| 160 | Entity * EntityManager::CreateNpc(const GameDataStore &data,const Parse_NPC &tpl,int idx,int variant) |
| 161 | { |
no test coverage detected