| 239 | } |
| 240 | |
| 241 | int LoadShipImage(const char *filename) { |
| 242 | int img_handle; |
| 243 | |
| 244 | img_handle = LoadPolyModel(filename, 1); |
| 245 | |
| 246 | return img_handle; |
| 247 | } |
| 248 | |
| 249 | // Given a ship handle, returns an index to that ships model |
| 250 | int GetShipImage(int handle) { |
no test coverage detected