diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/If.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/If.java new file mode 100644 index 00000000..d755c15b --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/If.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command; + +public class If { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/Jump.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/Jump.java new file mode 100644 index 00000000..ef4cf61f --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/Jump.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command; + +public class Jump { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/arithmetic/Add.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/arithmetic/Add.java new file mode 100644 index 00000000..8729c931 --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/arithmetic/Add.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.arithmetic; + +public class Add { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/arithmetic/Div.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/arithmetic/Div.java new file mode 100644 index 00000000..469c8b45 --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/arithmetic/Div.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.arithmetic; + +public class Div { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/arithmetic/Mul.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/arithmetic/Mul.java new file mode 100644 index 00000000..229381a9 --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/arithmetic/Mul.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.arithmetic; + +public class Mul { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/arithmetic/Sub.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/arithmetic/Sub.java new file mode 100644 index 00000000..f0c1ac63 --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/arithmetic/Sub.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.arithmetic; + +public class Sub { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/io/Echo.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/io/Echo.java new file mode 100644 index 00000000..1d62b571 --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/io/Echo.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.io; + +public class Echo { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/io/Input.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/io/Input.java new file mode 100644 index 00000000..ffe62a2d --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/io/Input.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.io; + +public class Input { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/And.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/And.java new file mode 100644 index 00000000..7e8f3d2b --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/And.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.logic; + +public class And { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Equal.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Equal.java new file mode 100644 index 00000000..86ce535d --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Equal.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.logic; + +public class Equal { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Greater.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Greater.java new file mode 100644 index 00000000..bfae8d10 --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Greater.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.logic; + +public class Greater { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Less.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Less.java new file mode 100644 index 00000000..78cc49d6 --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Less.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.logic; + +public class Less { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Not.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Not.java new file mode 100644 index 00000000..bd9c5d8d --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Not.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.logic; + +public class Not { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Or.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Or.java new file mode 100644 index 00000000..1a8a7f74 --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/logic/Or.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.logic; + +public class Or { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/variable/Global.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/variable/Global.java new file mode 100644 index 00000000..79b4343f --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/variable/Global.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.variable; + +public class Global { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/variable/Unglobal.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/variable/Unglobal.java new file mode 100644 index 00000000..b809f6c2 --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/variable/Unglobal.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.variable; + +public class Unglobal { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/variable/Unvar.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/variable/Unvar.java new file mode 100644 index 00000000..e3b48e9f --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/variable/Unvar.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.variable; + +public class Unvar { +} diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/variable/Var.java b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/variable/Var.java new file mode 100644 index 00000000..3335d47f --- /dev/null +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/script/command/variable/Var.java @@ -0,0 +1,4 @@ +package de.steamwar.bausystem.features.script.command.variable; + +public class Var { +}