Select Git revision
core_renderer.php
-
Alexander Bias authoredAlexander Bias authored
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();
}
}