summaryrefslogtreecommitdiff
path: root/DesignPatterns/src/app/DesignPatterns.Strategy/BowAndArrow.cs
blob: 760ec472e51c35e5974d2b3ceffadeaf1a660184 (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 BowAndArrow : IWeapon {
		public void UseWeapon( ) {
			Console.Out.WriteLine( "Fire bow and arrow!" );
		}
	}
}