|
Post by crazynate on Feb 10, 2012 19:28:47 GMT -5
I've been working on a tile map editor(eventually game engine) the past few months in VB 2010, which I originally started on because I was getting tired of hard coding maps for a platformer game I was trying to make in Basic4gl but I've gone fairly overboard on making the map editor....
Anywho, is there a way to resize arrays in basic4gl so i can load different sized maps? If not, how difficult would it likely be for me to attempt to create a plugin to do so?
|
|
|
Post by Nicky Peter Hollyoake on Feb 11, 2012 17:57:02 GMT -5
dim &map()()
alloc map, 5, 5
...
- Nicky
|
|