blob: 8b773ed5655b7b864f3f85486d21eb0c101c368e (
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 Sword : IWeapon {
public void UseWeapon( ) {
Console.WriteLine( "Thrust Sword!" );
}
}
}
|