Initial sharing of project
This commit is contained in:
17
Spielobjekt.java
Normal file
17
Spielobjekt.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user