Browse Source

creation of the Enemy class

pull/1/head
jrtechs 8 years ago
parent
commit
9c90c7cd08
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      src/tanks/Enemy.java

+ 12
- 0
src/tanks/Enemy.java View File

@ -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
{
}

Loading…
Cancel
Save