| 160 | EngineCallback Callback; |
| 161 | |
| 162 | Source* GetSource(uint32 sourceID) |
| 163 | { |
| 164 | if (sourceID == 0) |
| 165 | return nullptr; |
| 166 | return &Sources[sourceID - 1]; // 0 is invalid ID so shift them |
| 167 | } |
| 168 | |
| 169 | void MarkAllDirty() |
| 170 | { |
no outgoing calls
no test coverage detected