| 232 | // Given a filename, loads the model found in that file |
| 233 | |
| 234 | int LoadDoorImage(const char *filename, int pageable) { |
| 235 | int img_handle; |
| 236 | |
| 237 | img_handle = LoadPolyModel(filename, pageable); |
| 238 | |
| 239 | return img_handle; |
| 240 | } |
| 241 | |
| 242 | // Given a door handle, returns an index to that doors model |
| 243 | int GetDoorImage(int handle) { |
no test coverage detected