public HorseCardDrawable(Point point, IHorse horse) { _width = 140; _height = 200; _horse = horse; CenterX = _width / 2; CenterY = _height / 2; X = point.X - CenterX; Y = point.Y - CenterY; Depth = -2001; }
public Person6(IHorse horse) { Horse = horse; }
public Person6(IHorse horse,A a) { Horse = horse; A = a; }
public Person6(string name,IHorse horse,A a) { Name = name; Horse = horse; A = a; HasVisited = true; }
public Person6(string name,IHorse horse) { Name = name; Horse = horse; }
public Person5(IHorse horse,A a) { Horse = horse; A = a; HasVisited = true; }
void SetHorse(IHorse horse) { Horse = horse; HasVisited = true; }
public Person5(IHorse horse, A a) { Horse = horse; A = a; HasVisited = true; }
public Horseman( IHorse horse ) { _horse = horse; Rank = Rank.Horseman; }
public FlyingRainOfFire( IBowAndArrow bowAndArrow, IHorse horse ) { _bowAndArrow = bowAndArrow; _horse = horse; Rank = Rank.FlyingRainOfFire; }