guess-the-card/Form1.cs
2026-04-11 11:47:26 +07:00

18 lines
382 B
C#

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