/*
 * @topic W020141 Maze: Java application
 * @brief class Robot extends Visitor
 */
package mazeapp;

public class Robot extends Visitor {

    // data attributes:
    private int strength;

    // operations
    public int getStrength() {
        return strength;
    }

    public void setStrength(int str) {
        strength = str;
    }
}//class Robot