Exemplo n.º 1
0
 public PokePos(PictureBox playerY, PictureBox enemyY, MyPictureBox shadow)
 {
     this.playerY = playerY;
     this.enemyY  = enemyY;
     this.shadow  = shadow;
     playerPos    = new Point(40, 58);
     enemyPos     = new Point(144, 18);
 }
Exemplo n.º 2
0
 public PokeImg(MyPictureBox front, MyPictureBox shinyfront,
                MyPictureBox back, MyPictureBox shinyback)
 {
     this.front      = front;
     this.shinyfront = shinyfront;
     this.back       = back;
     this.shinyback  = shinyback;
     icoinImage      = new Bitmap(32, 64, PixelFormat.Format24bppRgb);
 }
Exemplo n.º 3
0
 public void SetPic(MyPictureBox front, MyPictureBox back)
 {
     front_img = front;
     back_img  = back;
 }