| 9 | namespace Star { |
| 10 | |
| 11 | Stagehand::Stagehand(Json const& config) |
| 12 | : Stagehand() { |
| 13 | setUniqueId(config.optString("uniqueId")); |
| 14 | readConfig(config); |
| 15 | } |
| 16 | |
| 17 | Stagehand::Stagehand(ByteArray const& netStore, NetCompatibilityRules) : Stagehand() { |
| 18 | readConfig(DataStreamBuffer::deserialize<Json>(netStore)); |
nothing calls this directly
no test coverage detected