Skip to content
Snippets Groups Projects
Select Git revision
  • 1cf75b7122ba968ef2d56b6e56047c34dd701807
  • master default protected
  • 4xx_dev
  • 33_STABLE
  • excel-export-evaluation
  • 2022050502
  • 2022050501
  • 2022021501
  • 2022021500
9 results

contact.php

Blame
  • ToiletPaper.java 482 B
    import greenfoot.*;  // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
    
    /**
     * Write a description of class ToiletPaper here.
     * 
     * @author (your name) 
     * @version (a version number or a date)
     */
    public class ToiletPaper extends Item
    {
        /**
         * Act - do whatever the ToiletPaper wants to do. This method is called whenever
         * the 'Act' or 'Run' button gets pressed in the environment.
         */
        public void act() 
        {
            disappear();
        }
            
    }