• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[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