| 105 | } |
| 106 | |
| 107 | bool afxProjectileData::onAdd() |
| 108 | { |
| 109 | if (Parent::onAdd() == false) |
| 110 | return false; |
| 111 | |
| 112 | bool runs_on_s = ((networking & (SERVER_ONLY | SERVER_AND_CLIENT)) != 0); |
| 113 | bool runs_on_c = ((networking & (CLIENT_ONLY | SERVER_AND_CLIENT)) != 0); |
| 114 | launch_pos_def.parseSpec(launch_pos_spec, runs_on_s, runs_on_c); |
| 115 | |
| 116 | return true; |
| 117 | } |
| 118 | |
| 119 | void afxProjectileData::packData(BitStream* stream) |
| 120 | { |
nothing calls this directly
no test coverage detected