2014-08-10 10:07:38 +03:00
|
|
|
package com.iluwatar;
|
|
|
|
|
2014-08-31 08:29:50 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* The interface containing method for producing objects.
|
|
|
|
*
|
|
|
|
*/
|
2014-08-10 10:07:38 +03:00
|
|
|
public interface Blacksmith {
|
|
|
|
|
|
|
|
Weapon manufactureWeapon(WeaponType weaponType);
|
|
|
|
|
|
|
|
}
|