| 53 | } |
| 54 | |
| 55 | PlayerPtr PlayerFactory::create() const { |
| 56 | return make_shared<Player>(m_config); |
| 57 | } |
| 58 | |
| 59 | PlayerPtr PlayerFactory::diskLoadPlayer(Json const& diskStore) const { |
| 60 | return make_shared<Player>(m_config, diskStore); |
no outgoing calls
no test coverage detected