Skip to content

Instantly share code, notes, and snippets.

@NikkiBuck
Created October 10, 2012 01:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NikkiBuck/3862706 to your computer and use it in GitHub Desktop.
Save NikkiBuck/3862706 to your computer and use it in GitHub Desktop.
public static void Roll()
{
Random r = new Random();
Random r2 = new Random();
int roll = r.Next(1, 7);
int roll2 = r2.Next(1, 7);
}
//label1.Text = roll.ToString();
//private
//pictureBox1.Image = Image.FromFile(filepath + "die-" + roll.ToString() + ".gif");
@ChrisLundquist
Copy link

pictureBox1.image = dealer.get_image();

@ChrisLundquist
Copy link

dealerPictureBox1.image = dealer1.get_image();
dealerPictureBox2.image = dealer2.get_image();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment