blob: ec6dcfb749fcfd1b57d530f3577be2052e3e626e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Created by:
* Created: Monday, July 02, 2007
*/
using System;
namespace DesignPatterns.Strategy {
public class Axe : IWeapon {
public void UseWeapon( ) {
Console.Out.WriteLine( "Lunge with Axe" );
}
}
}
|