namespace DesignPatterns.Strategy { public interface IWeapon { void UseWeapon( ); } }