Package pr.battlebots.inventory

Examples of pr.battlebots.inventory.Inventory


        return texture;
    }

    public Mob(Vec p, World world) {
        super(p, world);
        inv = new Inventory(16);

        texture = ImageLoader.Get(this.getFullTypeName());
        this.health = 10;
        d = Dir.East;
    }
View Full Code Here

TOP

Related Classes of pr.battlebots.inventory.Inventory

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.