diff --git a/Projekte/mdga/client/build.gradle b/Projekte/mdga/client/build.gradle new file mode 100644 index 00000000..127e6205 --- /dev/null +++ b/Projekte/mdga/client/build.gradle @@ -0,0 +1,21 @@ +plugins { + id 'buildlogic.jme-application-conventions' +} + +description = 'mdga client' + +dependencies { + implementation project(":mdga:model") + + implementation libs.jme3.desktop + + runtimeOnly libs.jme3.awt.dialogs + runtimeOnly libs.jme3.plugins + runtimeOnly libs.jme3.jogg + runtimeOnly libs.jme3.testdata +} + +application { + mainClass = 'pp.mdga.client.MdgaApp' + applicationName = 'MDGA' +} \ No newline at end of file diff --git a/Projekte/mdga/client/src/main/java/pp/mdga/client/MdgaApp.java b/Projekte/mdga/client/src/main/java/pp/mdga/client/MdgaApp.java new file mode 100644 index 00000000..115d51ee --- /dev/null +++ b/Projekte/mdga/client/src/main/java/pp/mdga/client/MdgaApp.java @@ -0,0 +1,15 @@ +package pp.mdga.client; + +import com.jme3.app.SimpleApplication; + +public class MdgaApp extends SimpleApplication { + public static void main(String[] args) { + MdgaApp app = new MdgaApp(); + app.start(); + } + + @Override + public void simpleInitApp() { + + } +} \ No newline at end of file diff --git a/Projekte/settings.gradle b/Projekte/settings.gradle index 34558071..fbaa68b5 100644 --- a/Projekte/settings.gradle +++ b/Projekte/settings.gradle @@ -32,3 +32,8 @@ } } } +include 'mdga:client' +findProject(':mdga:client')?.name = 'client' +include 'mdga:client' +findProject(':mdga:client')?.name = 'client' +