aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcinzelent <marcin@zelent.net>2021-02-21 14:13:49 +0100
committermarcinzelent <marcin@zelent.net>2019-12-20 14:21:37 +0100
commitb1eb36d3fbc5012b07489454a7452e8488507f6a (patch)
treef6a9e6e561eabde5b06366a6aeac78df123ca917 /Program.cs
Initial commitHEADmaster
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Program.cs b/Program.cs
new file mode 100644
index 0000000..8deb16c
--- /dev/null
+++ b/Program.cs
@@ -0,0 +1,17 @@
+using System;
+using KukaPizza.Controllers;
+
+namespace KukaPizza
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ Console.Title = "Kuka Pizza";
+ Console.CursorVisible = false;
+ Console.Clear();
+
+ new MainController();
+ }
+ }
+}