[vJASS] Custom struct size with three extending structs

Status
Not open for further replies.
Level 28
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!
 

Attachments

  • JassHelper.png
    JassHelper.png
    66.6 KB · Views: 46
Status
Not open for further replies.
Top