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

17
Spielobjekt.java Normal file
View File

@@ -0,0 +1,17 @@
/**
* Beschreiben Sie hier die Klasse Spielobjekte.
*
* @author (Ihr Name)
* @version (eine Versionsnummer oder ein Datum)
*/
public abstract class Spielobjekt extends GameObject
{
protected final int x;
protected final int y;
public Spielobjekt(int x, int y){
this.x = x;
this.y = y;
}
}