2014-08-31 08:29:50 +03:00

13 lines
193 B
Java

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