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!
This separates instantiation of nodes from linked lists + isn't circular. That combo is lethal in how hard it is to code. If you combine instantiation, non-circular is trivial =).
Removed struct, that was my bad
The other was a dumb question, all of the methods use "this"
Oh yea, there are a few different types of linked lists
Linked list with changing head (this)
Linked list with head
Circular linked list with changing head
Circular linked list with head
Static linked list
Static circular linked list
Not all of these have been coded
You can do array versions and table versions of all of the non-static ones too.
edit
With this, you can do some cool things =)
JASS:
local unit u = CreateUnit(...)
local thistype this = GetUnitUserData(u)
local thistype node = add() //o-o, yes, I just added a node directly to the unit
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.