| 6 | namespace Star { |
| 7 | |
| 8 | DamageSource::DamageSource() |
| 9 | : damageType(DamageType::NoDamage), damage(0.0), sourceEntityId(NullEntityId), rayCheck(false) {} |
| 10 | |
| 11 | DamageSource::DamageSource(Json const& config) { |
| 12 | if (auto dtype = config.optString("damageType")) |
nothing calls this directly
no test coverage detected