I need some help. I need it badly.
I'm making a game and I ran into a problem. Heres the code:
package {
import org.axgl.AxState;
public class GameState extends AxState {
private var tilemap:AxTilemap;
override public function create():void {
tilemap = new AxTilemap().build(Resource.MAP_DATA, Resource.TILES, 10, 10, 3);
add(tilemap);
super.create();
trace("Gamestate Created");
}
override public function update():void {
super.update();
}
}
}
Heres the error:
5: col: 23 Error: Type was not found or was not a compile-time c...
7: col: 18 Error: Call to a possibly undefined method AxTilemap.
