Skip to content
Snippets Groups Projects
Select Git revision
  • b71683de7bc2f44b8a7e937733ca479acdfced85
  • master default protected
  • dev-moodle-4
  • hsh_v4.1.2
  • hsh_v4.1.1
  • hsh_v4.1.0
6 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();
        }    
        
    }