| 4 | namespace Star { |
| 5 | |
| 6 | PlayerLog::PlayerLog() { |
| 7 | m_deathCount = 0; |
| 8 | m_playTime = 0; |
| 9 | m_introComplete = false; |
| 10 | m_scannedObjects = StringSet(); |
| 11 | m_radioMessages = StringSet(); |
| 12 | m_cinematics = StringSet(); |
| 13 | } |
| 14 | |
| 15 | PlayerLog::PlayerLog(Json const& json) { |
| 16 | m_deathCount = json.getInt("deathCount"); |
nothing calls this directly
no test coverage detected