28.05.2018, 14:33
What do mean by that? A PAWN enumerator is a list of integers. If you are looking for structuring data, you can use MEM_struct, which is literally a PAWN enumerator with its tag disabled.
Definition: https://github.com/BigETI/pawn-memor.../memory.inc#L9
Example: https://github.com/BigETI/pawn-map/b...de/map.inc#L14
If you know how to map a multi dimensional array to a contiguous memory block, then yes.
Either with MEM_new, MEM_new_zero, MEM_new_arr or MEM_clone.
Definition: https://github.com/BigETI/pawn-memor.../memory.inc#L9
Example: https://github.com/BigETI/pawn-map/b...de/map.inc#L14
If you know how to map a multi dimensional array to a contiguous memory block, then yes.
Either with MEM_new, MEM_new_zero, MEM_new_arr or MEM_clone.