Advertisement
Filipinex

CMotherFish

Mar 19th, 2024
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. import greenfoot.*;
  2.  
  3. public class CMotherFish extends Actor
  4. {
  5.     //materska trieda ryb
  6.     protected int Size;
  7.    
  8.     public CMotherFish(int size)
  9.     {
  10.         this.Size = size;
  11.     }
  12.    
  13.     public void act()
  14.     {
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement