/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package clickeffect;

public class CELaskuri implements Laskuri {
    private int arvo;

    public CELaskuri() {
        this.arvo = 0;
    }

    public int getArvo() {
        return arvo;
    }

    public void kasvataArvoa() {
        arvo += 1;
        
        if(arvo > 9999) {
            arvo = 0;
        }
    }

    public String toString() {
        return "[ " + getArvo() + " ]";
    }
}
