Skip to content
Snippets Groups Projects
Select Git revision
  • 7ee81218dcd5fb2224addced745f5dc384df1009
  • main default
  • hsh-MOODLE_404+
  • hsh_3.10
  • master protected
  • v1.4.7
  • v1.4.6
  • v1.4.5
  • v1.4.3
  • v1.4.1
  • v1.4
  • v1.3r2
  • v1.3
  • v1.2
14 results

version.php

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();
        }    
        
    }