blob: 7b2243c1fb822446c7fd7ab941af8aa680854397 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* Created by:
* Created: Monday, July 02, 2007
*/
namespace DesignPatterns.Strategy {
public abstract class Character {
#region Constructors
public Character( IWeapon weapon ) {
_weapon = weapon;
}
#endregion
#region Public Properties
public IWeapon Weapon {
get { return _weapon; }
set { _weapon = value; }
}
#endregion
#region Public Methods
public abstract void Fight( );
#endregion
#region Private Fields
private IWeapon _weapon;
#endregion
}
}
|