Does Blitz support custom types as class variables? I'm getting an error on the "lstTiles = New TList" line in the "Create" function: "Identifier "lstTiles" not found."
Not sure what is wrong. Similar functions with primitive class variables seem to work... not this. I've searched the forum and people have had similar problems, nothing that I can apply here, tho'.
Not sure what is wrong. Similar functions with primitive class variables seem to work... not this. I've searched the forum and people have had similar problems, nothing that I can apply here, tho'.
Type Tileset Field lstTiles:TList Function Create () lstTiles = New TList lstTiles = CreateList () End Function Method addTile (t:Tile) lstTiles.AddLast(t) End Method End Type