- Joined
- Feb 2, 2006
- Messages
- 1,630
JASS:
interface A[10000]
endinterface
struct B extends A
endstruct
struct C extends B
endstruct
struct D extends C
endstruct
without the struct D this code works. However, adding the struct D to the code leads to the attached compile error.
How can I use the custom struct size with more than two extending structs?!
I need a bigger struct size since I have too many instances on my map!