13 lines
193 B
Java
13 lines
193 B
Java
package com.iluwatar;
|
|
|
|
/**
|
|
*
|
|
* The interface containing method for producing objects.
|
|
*
|
|
*/
|
|
public interface Blacksmith {
|
|
|
|
Weapon manufactureWeapon(WeaponType weaponType);
|
|
|
|
}
|