Esempio n. 1
0
 protected Decoration(CowGameScreen cowGameScreen, World world, Rectangle destRect, StaticAnimatedSprites decorationMovement) : base(cowGameScreen, world)
 {
     this.DestRect           = destRect;
     this.DecorationMovement = decorationMovement;
     this.ObjectMovingType   = ObjectMovingType.Static;
 }
Esempio n. 2
0
 protected Plant(CowGameScreen cowGameScreen, World world, Rectangle destRect, StaticAnimatedSprites plantMovement) : base(cowGameScreen, world)
 {
     Graphics      = cowGameScreen.Graphics;
     DestRect      = destRect;
     PlantMovement = plantMovement;
 }