Skip to content
Snippets Groups Projects
Select Git revision
  • bac7ff2d3f05e5d86df0eb6a6206129ad63ccb9e
  • master default
  • v0.52.5
  • v0.52.4
  • v0.52.3
  • v0.52.2
  • v0.52.1
  • v0.52.0
  • v0.51.0
  • v0.50.0
  • v0.49.0
11 results

CHANGELOG.rst

Blame
  • To find the state of this project's repository at the time of any of these versions, check out the tags.
    DispoMask.java 475 B
    import greenfoot.*;  // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
    
    /**
     * Write a description of class DispoMask here.
     * 
     * @author (your name) 
     * @version (a version number or a date)
     */
    public class DispoMask extends FaceMask
    {
        /**
         * Act - do whatever the DispoMask wants to do. This method is called whenever
         * the 'Act' or 'Run' button gets pressed in the environment.
         */
        public void act() 
        {
            disappear();
        }    
    }