diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 1970-01-01 00:00:00 +0000 |
commit | efe2fde7cbe04bc9548c904be3779e62b24355e5 (patch) | |
tree | 45192ff4336c5646151252365095fba80fc8c68d /cookie_cals/Cookie Calories/Program.cs | |
parent | paint job estimator (diff) | |
download | sql-efe2fde7cbe04bc9548c904be3779e62b24355e5.tar sql-efe2fde7cbe04bc9548c904be3779e62b24355e5.tar.gz sql-efe2fde7cbe04bc9548c904be3779e62b24355e5.tar.bz2 sql-efe2fde7cbe04bc9548c904be3779e62b24355e5.tar.xz sql-efe2fde7cbe04bc9548c904be3779e62b24355e5.zip |
cookie cals
Diffstat (limited to 'cookie_cals/Cookie Calories/Program.cs')
-rw-r--r-- | cookie_cals/Cookie Calories/Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/cookie_cals/Cookie Calories/Program.cs b/cookie_cals/Cookie Calories/Program.cs new file mode 100644 index 0000000..27e49f2 --- /dev/null +++ b/cookie_cals/Cookie Calories/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Cookie_Calories +{ + internal static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new cookieCalories()); + } + } +} |