public static void Main(string[] args)
    {
        IWeapon hammerWeapon = new Hammer(15, 10);

        hammerWeapon.Attack();
    }