| 57 | } |
| 58 | |
| 59 | void ProjectileSetGuidString(OsiArgumentDesc const & args) |
| 60 | { |
| 61 | auto prop = args[0].String; |
| 62 | auto value = args[1].String; |
| 63 | |
| 64 | if (!ProjectileHelper) { |
| 65 | OsiError("Called when no projectile is active!"); |
| 66 | return; |
| 67 | } |
| 68 | |
| 69 | ProjectileHelper->SetGuidString(prop, value); |
| 70 | } |
| 71 | |
| 72 | void ProjectileSetVector3(OsiArgumentDesc const & args) |
| 73 | { |
nothing calls this directly
no test coverage detected