• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!

[vJASS] Custom struct size with three extending structs

Status
Not open for further replies.
Level 26
Joined
Feb 2, 2006
Messages
1,695
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: 40
Status
Not open for further replies.
Top