diff --git a/src/tanks/Enemy.java b/src/tanks/Enemy.java new file mode 100644 index 0000000..33e5872 --- /dev/null +++ b/src/tanks/Enemy.java @@ -0,0 +1,12 @@ +/* + super class for any enemy in the game + a enemy can spawn at a random location along the border of the map + a enemy can also calculate the distance and angle to the player +*/ +package tanks; + + +public class Enemy extends Living +{ + +}