Början på paketet agent
[AntiTD.git] / src / se / umu / cs / dit06ajnajs / agent / Unit.java
blobb122f42ce60b1065c0d705435fe3b215fdfe082a
1 package se.umu.cs.dit06ajnajs.agent;
3 import java.awt.Image;
5 import se.umu.cs.dit06ajnajs.Paintable;
7 public abstract class Unit implements Agent, Paintable{
8 protected int xPos;
9 protected int yPos;
11 protected int width;
12 protected int height;
14 protected Direction direction;
16 public Unit(int xPos, int yPos, int width, int height, Direction direction) {
17 this.xPos = xPos;
18 this.yPos = yPos;
19 this.width = width;
20 this.height = height;
21 this.direction = direction;
24 public void setImage(Image img) {
25 // TODO Auto-generated method stub