| 3041 | } |
| 3042 | |
| 3043 | void FreeAllModels() { |
| 3044 | for (int i = 0; i < MAX_POLY_MODELS; i++) { |
| 3045 | if (Poly_models[i].used > 0) { |
| 3046 | Poly_models[i].used = 1; |
| 3047 | |
| 3048 | FreePolyModel(i); |
| 3049 | } |
| 3050 | } |
| 3051 | } |
| 3052 | |
| 3053 | // Inits our models array and loads our ship pof |
| 3054 | int InitModels() { |
nothing calls this directly
no test coverage detected