How do I make a node array?

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Jim121
Posts: 21
Joined: Sat Oct 11, 2008 2:23 am

How do I make a node array?

Post by Jim121 »

How can a make an array of nodes e.g

instead of
player1
player2
player3
player4
..........

something like this

player[100];

thanks in advance.
Open Conquest Developer
web site:
http://openconquest.webs.com/
reetu.raj
Posts: 17
Joined: Wed Aug 27, 2008 5:11 pm
Location: Orlando
Contact:

Post by reetu.raj »

simple its like ISceneNode* player[100];
or you can use irrlicht's array, here is link for its api.
http://irrlicht.sourceforge.net/docu/cl ... array.html
Jim121
Posts: 21
Joined: Sat Oct 11, 2008 2:23 am

Post by Jim121 »

thanks
Open Conquest Developer
web site:
http://openconquest.webs.com/
kornwaretm
Competition winner
Posts: 189
Joined: Tue Oct 16, 2007 3:53 am
Location: Indonesia
Contact:

Post by kornwaretm »

array<ISceneNode*> nodes;
Post Reply