Example #1
0
 public BrickBlockState(Block block)
 {
     this.Block  = block;
     this.Sprite = new AnimatedBlock(SpriteHolder.Blocks, SpriteHolder.BrickBlock, block);
 }
 public BrickBlockWithCoinsState(Block block)
 {
     this.CoinsLeftCounter = 10;
     this.Block            = block;
     this.Sprite           = new AnimatedBlock(SpriteHolder.Blocks, SpriteHolder.BrickBlock, block);
 }
Example #3
0
 public QuestionBlockState(Block block)
 {
     this.Block  = block;
     this.Sprite = new AnimatedBlock(SpriteHolder.Blocks, SpriteHolder.QuestionBlock, block);
 }