As I have been learning vJass, I have become completely hooked on structs, heh. However, there is one thing I have seen lately that I really am unsure of what exactly it does. I first saw it in Vexorian's xe system, and have seen it around a few other places too. It looks like some sort of array index on a struct declaration, like so:
I assume it's some kind of cap on the number of instances or something, but am unsure and can't seem to find any information after a while of searching. Also, is 8190 a special number of sorts (perhaps the highest valid value)? I have seen that specific number several times.
Thanks in advance!
JASS:
struct SomeStruct[8190]
// struct data here ...
endstruct
I assume it's some kind of cap on the number of instances or something, but am unsure and can't seem to find any information after a while of searching. Also, is 8190 a special number of sorts (perhaps the highest valid value)? I have seen that specific number several times.
Thanks in advance!