commit 8f6223db2d58486d29a4d352ba6094e4778b1f20 Author: s452635 Date: Wed Oct 6 18:16:30 2021 +0200 first commit 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? + + } + +}