* Get a Structure from the pool with the indicated index. * * @param index The index of the Structure to get. * @return The Structure. */
| 24 | * @return The Structure. |
| 25 | */ |
| 26 | Structure *Structure_Get_ByIndex(uint16 index) |
| 27 | { |
| 28 | assert(index < STRUCTURE_INDEX_MAX_HARD); |
| 29 | return &g_structureArray[index]; |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Find the first matching Structure based on the PoolFindStruct filter data. |
no outgoing calls
no test coverage detected