15 lines
220 B
Java
15 lines
220 B
Java
|
package com.iluwatar.activeobject;
|
||
|
|
||
|
/**
|
||
|
* An implementation of the ActiveCreature class.
|
||
|
* @author Noam Greenshtain
|
||
|
*
|
||
|
*/
|
||
|
public class Orc extends ActiveCreature {
|
||
|
|
||
|
public Orc(String name) {
|
||
|
super(name);
|
||
|
}
|
||
|
|
||
|
}
|