Package entities.Map

Examples of entities.Map.FieldMap


    @Override
    public void Initialize() {
        direction = Direction.None;
        lastHit = new ArrayList<Point>();
        moves = new ArrayList<Point>();
        Map = new FieldMap();
    }
View Full Code Here


    /**
     * Initialize the entity.
     */
    @Override
    public void Initialize() {
        Map = new FieldMap();
    }
View Full Code Here

    {
        Options.ReadOptionsToProperties();

        IsRunning = true;
        ai = new AI(Options.AIlevel);
        map = new FieldMap();
        map.SetShipsRandomly();
        stringMap = new ArrayList<List<Character>>();
        stringMap = map.MapAsCharList(false);
    }
View Full Code Here

TOP

Related Classes of entities.Map.FieldMap

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.