Added some creatures.

This commit is contained in:
Ilkka Seppala 2015-04-23 22:30:51 +03:00
parent 6f55b917ce
commit 35e3d833cb
3 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package com.iluwatar;
public class KillerBee extends AbstractCreature {
public KillerBee() {
super("KillerBee", Size.SMALL, Movement.FLYING, Color.LIGHT);
}
}

View File

@ -0,0 +1,8 @@
package com.iluwatar;
public class Shark extends AbstractCreature {
public Shark() {
super("Shark", Size.NORMAL, Movement.SWIMMING, Color.LIGHT);
}
}

View File

@ -0,0 +1,8 @@
package com.iluwatar;
public class Troll extends AbstractCreature {
public Troll() {
super("Troll", Size.LARGE, Movement.WALKING, Color.DARK);
}
}