Package com.jakehorsfield.platformer.objects.tiles

Examples of com.jakehorsfield.platformer.objects.tiles.TileGrid


    }

    private void initObjects() {
        System.out.println("Initialising objects");

        grid = new TileGrid();
        grid.load(new File("res/maps/map.xml"));
        player = new Player(new Vector2f(32, 32), 32, 32);
        menu = new Menu();

        State.setState(State.MENU);
View Full Code Here

TOP

Related Classes of com.jakehorsfield.platformer.objects.tiles.TileGrid

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.