aboutsummaryrefslogtreecommitdiff
path: root/Lazer.java
blob: 5dbfb1f4b097eaf49aebeff9cc20469c57175c1a (plain)
1
2
3
4
5
6
7
8
9
10
11
import greenfoot.*;  // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)

/**
 * Projektile der Aliens.
 */
public class Lazer extends Projektil
{
    public Lazer() {
        geschwindigkeit = -5;
    }  
}