From efe2fde7cbe04bc9548c904be3779e62b24355e5 Mon Sep 17 00:00:00 2001
From: ​
Date: Thu, 1 Jan 1970 00:00:00 +0000
Subject: cookie cals

---
 cookie_cals/Cookie Calories/Program.cs | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 cookie_cals/Cookie Calories/Program.cs

(limited to 'cookie_cals/Cookie Calories/Program.cs')

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());
+        }
+    }
+}
-- 
cgit 1.4.1