* Get address of the i'th element * * @param Index - the index * @return - the address of the i'th element */
| 358 | * @return - the address of the i'th element |
| 359 | */ |
| 360 | FORCEINLINE uint8* GetData(int32 Index) |
| 361 | { |
| 362 | return (uint8*)ScriptArray->GetData() + Index * ElementSize; |
| 363 | } |
| 364 | |
| 365 | FORCEINLINE const uint8* GetData(int32 Index) const |
| 366 | { |