Beispiel #1
0
        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;
        }
Beispiel #2
0
 public Person6(IHorse horse)
 {
     Horse = horse;
 }
Beispiel #3
0
 public Person6(IHorse horse,A a)
 {
 	Horse = horse;
 	A = a;
 
 }
Beispiel #4
0
 public Person6(string name,IHorse horse,A a)
 {
 	Name = name;
 	Horse = horse;
 	A = a;
     HasVisited = true;
 }
Beispiel #5
0
 public Person6(string name,IHorse horse)
 {
 	Name = name;
 	Horse = horse;
 }
Beispiel #6
0
 public Person5(IHorse horse,A a)
 {
 	Horse = horse;
 	A = a;
 	HasVisited = true;
 }
Beispiel #7
0
 void SetHorse(IHorse horse)
 {
     Horse = horse;
     HasVisited = true;
 }
Beispiel #8
0
 public Person5(IHorse horse, A a)
 {
     Horse      = horse;
     A          = a;
     HasVisited = true;
 }
Beispiel #9
0
 void SetHorse(IHorse horse)
 {
     Horse      = horse;
     HasVisited = true;
 }
Beispiel #10
0
 public Horseman( IHorse horse )
 {
     _horse = horse;
     Rank = Rank.Horseman;
 }
 public FlyingRainOfFire( IBowAndArrow bowAndArrow, IHorse horse )
 {
     _bowAndArrow = bowAndArrow;
     _horse = horse;
     Rank = Rank.FlyingRainOfFire;
 }