From 8f6223db2d58486d29a4d352ba6094e4778b1f20 Mon Sep 17 00:00:00 2001 From: s452635 Date: Wed, 6 Oct 2021 18:16:30 +0200 Subject: [PATCH] first commit --- .idea/.gitignore | 3 +++ .idea/.name | 1 + .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ RestaurantSystemPrototype.iml | 11 +++++++++++ src/MainRSP.java | 16 ++++++++++++++++ 7 files changed, 51 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/.name create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 RestaurantSystemPrototype.iml create mode 100644 src/MainRSP.java diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..b5d89f5 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +RestaurantSystemPrototype \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..b1001d2 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..2d3ce56 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/RestaurantSystemPrototype.iml b/RestaurantSystemPrototype.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/RestaurantSystemPrototype.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/MainRSP.java b/src/MainRSP.java new file mode 100644 index 0000000..ddd009e --- /dev/null +++ b/src/MainRSP.java @@ -0,0 +1,16 @@ + +public class MainRSP +{ + + public static void main() + { + + // initialize the system + + // working loop + + // shut down the system? + + } + +}