Skip to content
Snippets Groups Projects
Select Git revision
  • 552f096f53f0027fd90222274dd443e5c8112948
  • master default protected
  • hsh_v4.5
  • hsh_v4-4
  • hsh_v4.4
  • hsh_v4.3
  • hsh_v4.1.x
  • hsh_v4.2
  • hsh_v4.1
  • hsh_v3.11
  • hsh_3.10
  • v3.11-r2-hsh
  • v3.11-r2
  • v3.11-r1
  • v3.10-r1
  • v3.9-r1
  • v3.8-r2
  • v3.8-r1
  • v3.7-r1
19 results

interaction_forms.feature

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