• 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.

[JASS] arrays in structs?

Status
Not open for further replies.
Yes you can have arrays in structs, though it will limit the amount of struct instances you can have.

  • You have to define an array size.
  • The amount of instances your struct can have is 8190 dived by the highest array size of your members.

JASS:
struct secks
    integer array wat[2]
endstruct

http://www.wc3c.net/vexorian/jasshelpermanual.html#arrmemb
 
Status
Not open for further replies.
Top