Given a ship handle, returns an index to that ships model
| 248 | |
| 249 | // Given a ship handle, returns an index to that ships model |
| 250 | int GetShipImage(int handle) { |
| 251 | ASSERT(Ships[handle].used > 0); |
| 252 | |
| 253 | return (Ships[handle].model_handle); |
| 254 | } |
| 255 | |
| 256 | // This is a very confusing function. It takes all the ships that we have loaded |
| 257 | // and remaps then into their proper places (if they are static). |