From 1e7e6955ef886f904d630577571afbae63082079 Mon Sep 17 00:00:00 2001 From: jrtechs Date: Sun, 22 May 2016 18:22:13 -0400 Subject: [PATCH] creation of the living class --- src/tanks/Living.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/tanks/Living.java diff --git a/src/tanks/Living.java b/src/tanks/Living.java new file mode 100644 index 0000000..9360df2 --- /dev/null +++ b/src/tanks/Living.java @@ -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 +{ + +}