Browse Source

creation of the living class

pull/1/head
jrtechs 8 years ago
parent
commit
1e7e6955ef
1 changed files with 13 additions and 0 deletions
  1. +13
    -0
      src/tanks/Living.java

+ 13
- 0
src/tanks/Living.java View File

@ -0,0 +1,13 @@
/*
super class for any object that is alive
has health, and a boolean isAlive
every living element can take damage from another Rotational Element
determines damage by using instanceof
*/
package tanks;
public class Living extends RotationalElement
{
}

Loading…
Cancel
Save