| 21 | namespace Star { |
| 22 | |
| 23 | Projectile::Projectile(ProjectileConfigPtr const& config, Json const& parameters) { |
| 24 | m_config = config; |
| 25 | m_parameters = parameters; |
| 26 | |
| 27 | setup(); |
| 28 | } |
| 29 | |
| 30 | Projectile::Projectile(ProjectileConfigPtr const& config, DataStreamBuffer& data, NetCompatibilityRules) { |
| 31 | m_config = config; |