• 🏆 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!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[vJASS] Custom struct size with three extending structs

Status
Not open for further replies.
Level 25
Joined
Feb 2, 2006
Messages
1,689
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