commit 9dac9b0b2decda8b0bccc96f356eb893f2e5a497 Author: Aji Date: Sat Apr 11 14:56:45 2026 +0700 First commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..98d63b2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.vs/ +obj/ +bin/ \ No newline at end of file diff --git a/Form1.Designer.cs b/Form1.Designer.cs new file mode 100644 index 0000000..33e3f64 --- /dev/null +++ b/Form1.Designer.cs @@ -0,0 +1,45 @@ +namespace GuessTheDice +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + SuspendLayout(); + // + // Form1 + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(800, 450); + Name = "Form1"; + Text = "Guess The Dice"; + ResumeLayout(false); + } + + #endregion + } +} diff --git a/Form1.cs b/Form1.cs new file mode 100644 index 0000000..45d11c3 --- /dev/null +++ b/Form1.cs @@ -0,0 +1,10 @@ +namespace GuessTheDice +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/Form1.resx b/Form1.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/GuessTheDice.csproj b/GuessTheDice.csproj new file mode 100644 index 0000000..5151c0a --- /dev/null +++ b/GuessTheDice.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net10.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/GuessTheDice.csproj.user b/GuessTheDice.csproj.user new file mode 100644 index 0000000..7814ea2 --- /dev/null +++ b/GuessTheDice.csproj.user @@ -0,0 +1,8 @@ + + + + + Form + + + diff --git a/GuessTheDice.slnx b/GuessTheDice.slnx new file mode 100644 index 0000000..4725b10 --- /dev/null +++ b/GuessTheDice.slnx @@ -0,0 +1,3 @@ + + + diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..11a02c8 --- /dev/null +++ b/Program.cs @@ -0,0 +1,17 @@ +namespace GuessTheDice +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file