Facebook
From Scribby Cheetah, 7 Years ago, written in Plain Text.
This paste is a reply to Untitled from Innocent Duck - go back
Embed
Viewing differences between Untitled and Kot
package com.company;

/**
 * Created by Mazek on 2016-06-10.
 */
public class Kot extends Zwierze {
    
    public Kot(String mImie) {
        super(mImie);
    }

    public void miaucz(){
        System.out.println("miau miau!");
    }

    @Override
    public void bawSie(int czas) {
        mGlod += czas;
        mPragnienie += czas;
        mZmeczenie += czas;
        mHumor += czas;
    }


}