I have an array I create thusly:
var room:roomInfo[,,];
room=new roomInfo[5,5,5];
What's the deleting syntax? Simply doing `delete room;` or `delete room[,,];` doesn't seem to work. After deleting it I need to do this:
room=new roomInfo[10,10,10];
Seems like a ridiculously simple question but I get confused about these things and forget, and I couldn't find anything on Google (because I couldn't work out what to search).
↧