1 package se
.umu
.cs
.dit06ajnajs
.agent
;
4 import java
.awt
.Graphics
;
5 import java
.util
.HashMap
;
7 import java
.util
.logging
.Logger
;
9 import se
.umu
.cs
.dit06ajnajs
.map
.Level
;
10 import java
.awt
.Image
;
12 public class FootmanUnit
extends Unit
{
13 public FootmanUnit(String type
, int width
, int height
, int speed
, int health
,
14 int cost
, Map
<Direction
, Image
> images
) {
15 super(type
, width
, height
, speed
, health
, cost
, images
);
18 // public void paint(Graphics g) {
19 // // TODO Auto-generated method stub
20 // g.setColor(Color.BLACK);
21 // g.fillRect(this.getX(), this.getY(), this.getWidth(), this.getHeight());