20 lines
459 B
C#
20 lines
459 B
C#
namespace GuessTheCard
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
private int score = 0;
|
|
private int previousDice;
|
|
private Random random = new Random();
|
|
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
|
|
int randomDice = random.Next(1, 7);
|
|
previousDice = randomDice;
|
|
labelCard.Text = "Result : " + randomDice;
|
|
labelScore.Text = "Score: " + score;
|
|
}
|
|
}
|
|
}
|