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

12
GameObject.java Normal file
View File

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