Space Invaders

The classic game Space Invaders, without GUI.
This commit is contained in:
Fernando Méndez
2020-09-17 20:06:49 +02:00
committed by GitHub
parent 08097b1ba0
commit 1d271afe24
49 changed files with 3086 additions and 0 deletions

View File

@ -0,0 +1,23 @@
package tp.p2.game.GameObjects;
import tp.p2.game.Game;
/**
* @author Fernando M<>ndez Torrubiano
*
*/
public abstract class EnemyShip extends Ship {
//Constructor:
public EnemyShip(Game game, int fila, int col, int live) {
super(game, fila, col, live);
// TODO Auto-generated constructor stub
}
//M<>todos:
public abstract void computerAction();
public abstract void onDelete();
public abstract void move();
public abstract String toString();
}