Initial sharing of project

This commit is contained in:
burkart
2023-10-16 15:09:46 +02:00
commit aa2592086d
15 changed files with 1140 additions and 0 deletions

18
Nichts.java Normal file
View File

@@ -0,0 +1,18 @@
import java.awt.*;
/**
* Beschreiben Sie hier die Klasse Nichts.
*
* @author (Ihr Name)
* @version (eine Versionsnummer oder ein Datum)
*/
public class Nichts extends Spielobjekt
{
Nichts(int x, int y){
super(x,y);
}
public void render(Graphics2D g, int SpielobjektGröße){
}
}