2014-08-10 10:07:38 +03:00
|
|
|
package com.iluwatar;
|
|
|
|
|
2014-08-31 08:29:50 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Concrete subclass for creating new objects.
|
|
|
|
*
|
|
|
|
*/
|
2014-08-10 10:07:38 +03:00
|
|
|
public class OrcBlacksmith implements Blacksmith {
|
|
|
|
|
|
|
|
public Weapon manufactureWeapon(WeaponType weaponType) {
|
|
|
|
return new OrcWeapon(weaponType);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|