| 9 | std::unique_ptr<ShootProjectileApiHelper> ProjectileHelper; |
| 10 | |
| 11 | void ProjectilePrepareLaunch(OsiArgumentDesc const & args) |
| 12 | { |
| 13 | if (ProjectileHelper) { |
| 14 | OsiWarn("Destroying active ProjectileHelper?"); |
| 15 | } |
| 16 | |
| 17 | ProjectileHelper = std::make_unique<ShootProjectileApiHelper>(); |
| 18 | } |
| 19 | |
| 20 | void ProjectileLaunch(OsiArgumentDesc const & args) |
| 21 | { |
nothing calls this directly
no outgoing calls
no test coverage detected