Facebook
From Scribby Cheetah, 7 Years ago, written in Plain Text.
This paste is a reply to Untitled from Innocent Duck - view diff
Embed
Download Paste or View Raw
Hits: 458
  1. package com.company;
  2.  
  3. /**
  4.  * Created by Mazek on 2016-06-10.
  5.  */
  6. public class Kot extends Zwierze {
  7.    
  8.     public Kot(String mImie) {
  9.         super(mImie);
  10.     }
  11.  
  12.     public void miaucz(){
  13.         System.out.println("miau miau!");
  14.     }
  15.  
  16.     @Override
  17.     public void bawSie(int czas) {
  18.         mGlod += czas;
  19.         mPragnienie += czas;
  20.         mZmeczenie += czas;
  21.         mHumor += czas;
  22.     }
  23.  
  24.  
  25. }