Merge branch 'view_assets' into dev_client
# Conflicts: # Projekte/mdga/client/build.gradle
14
.editorconfig
Normal file
@@ -0,0 +1,14 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[*.java]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[*.txt]
|
||||
indent_style = tab
|
||||
59
.gitattributes
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
# Git configuration files
|
||||
.gitattributes text
|
||||
.gitignore text
|
||||
.gitconfig text
|
||||
.gitmodules text
|
||||
|
||||
# Documentation
|
||||
*.md text
|
||||
*.txt text
|
||||
AUTHORS text
|
||||
CHANGELOG text
|
||||
CHANGES text
|
||||
CONTRIBUTING text
|
||||
COPYING text
|
||||
INSTALL text
|
||||
LICENSE text
|
||||
NEWS text
|
||||
TODO text
|
||||
|
||||
# Java sources
|
||||
*.java text diff=java
|
||||
*.kt text diff=kotlin
|
||||
*.groovy text diff=java
|
||||
*.scala text diff=java
|
||||
*.gradle text diff=java
|
||||
*.gradle.kts text diff=kotlin
|
||||
|
||||
# Normalize text files (Convert crlf => lf)
|
||||
*.css text diff=css
|
||||
*.scss text diff=css
|
||||
*.sass text
|
||||
*.df text
|
||||
*.htm text diff=html
|
||||
*.html text diff=html
|
||||
*.js text
|
||||
*.mjs text
|
||||
*.cjs text
|
||||
*.jsp text
|
||||
*.jspf text
|
||||
*.jspx text
|
||||
*.properties text
|
||||
*.tld text
|
||||
*.tag text
|
||||
*.tagx text
|
||||
*.xml text
|
||||
|
||||
# Binary files
|
||||
# (binary is a macro for -text -diff)
|
||||
*.class binary
|
||||
*.dll binary
|
||||
*.ear binary
|
||||
*.jar binary
|
||||
*.so binary
|
||||
*.war binary
|
||||
*.jks binary
|
||||
|
||||
# Build tool wrappers
|
||||
mvnw text eol=lf
|
||||
gradlew text eol=lf
|
||||
51
.gitignore
vendored
@@ -1,26 +1,43 @@
|
||||
# Gradle
|
||||
.gradle
|
||||
build
|
||||
build/
|
||||
#!gradle/wrapper/gradle-wrapper.jar
|
||||
#!**/src/main/**/build/
|
||||
#!**/src/test/**/build/
|
||||
|
||||
# VSC
|
||||
bin
|
||||
|
||||
# IntelliJ
|
||||
*.iml
|
||||
### IntelliJ IDEA ###
|
||||
.idea
|
||||
out
|
||||
.idea/modules.xml
|
||||
.idea/jarRepositories.xml
|
||||
.idea/compiler.xml
|
||||
.idea/libraries/
|
||||
*.iws
|
||||
*.iml
|
||||
*.ipr
|
||||
out/
|
||||
#!**/src/main/**/out/
|
||||
#!**/src/test/**/out/
|
||||
|
||||
# Eclipse
|
||||
### Eclipse ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
bin/
|
||||
#!**/src/main/**/bin/
|
||||
#!**/src/test/**/bin/
|
||||
|
||||
# Libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
*.jar
|
||||
*.class
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
||||
|
||||
### Mac OS ###
|
||||
.DS_Store
|
||||
!Projekte/gradle/wrapper/gradle-wrapper.jar
|
||||
|
||||
|
||||
43
Projekte/.gitignore
vendored
@@ -1,43 +0,0 @@
|
||||
.gradle
|
||||
build/
|
||||
!gradle/wrapper/gradle-wrapper.jar
|
||||
!**/src/main/**/build/
|
||||
!**/src/test/**/build/
|
||||
|
||||
### IntelliJ IDEA ###
|
||||
.idea
|
||||
.idea/modules.xml
|
||||
.idea/jarRepositories.xml
|
||||
.idea/compiler.xml
|
||||
.idea/libraries/
|
||||
*.iws
|
||||
*.iml
|
||||
*.ipr
|
||||
out/
|
||||
!**/src/main/**/out/
|
||||
!**/src/test/**/out/
|
||||
|
||||
### Eclipse ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
bin/
|
||||
!**/src/main/**/bin/
|
||||
!**/src/test/**/bin/
|
||||
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
||||
|
||||
### Mac OS ###
|
||||
.DS_Store
|
||||
BIN
Projekte/mdga/client/Screenshot 2024-11-12 184708.png
Normal file
|
After Width: | Height: | Size: 83 KiB |
@@ -18,5 +18,5 @@ implementation project(":mdga:model")
|
||||
|
||||
application {
|
||||
mainClass = 'pp.mdga.client.MdgaApp'
|
||||
applicationName = 'mdga'
|
||||
applicationName = 'MDGA'
|
||||
}
|
||||
|
||||
@@ -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() {
|
||||
|
||||
}
|
||||
}
|
||||
BIN
Projekte/mdga/client/src/main/resources/bigTent/bigTent.j3o
Normal file
BIN
Projekte/mdga/client/src/main/resources/bigTent/bigTent_diff.png
Normal file
|
After Width: | Height: | Size: 316 KiB |
BIN
Projekte/mdga/client/src/main/resources/cardStack/cardStack.j3o
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
Projekte/mdga/client/src/main/resources/cir/cir.j3o
Normal file
BIN
Projekte/mdga/client/src/main/resources/cir/cir_diff.png
Normal file
|
After Width: | Height: | Size: 2.1 MiB |
BIN
Projekte/mdga/client/src/main/resources/heer/heer.j3o
Normal file
BIN
Projekte/mdga/client/src/main/resources/heer/heer_diff.png
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
BIN
Projekte/mdga/client/src/main/resources/jet/jet.j3o
Normal file
BIN
Projekte/mdga/client/src/main/resources/jet/jet_diff.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
Projekte/mdga/client/src/main/resources/lw/lw.j3o
Normal file
BIN
Projekte/mdga/client/src/main/resources/lw/lw_diff.png
Normal file
|
After Width: | Height: | Size: 210 KiB |
BIN
Projekte/mdga/client/src/main/resources/marine/marine.j3o
Normal file
BIN
Projekte/mdga/client/src/main/resources/marine/marine_diff.png
Normal file
|
After Width: | Height: | Size: 186 KiB |
BIN
Projekte/mdga/client/src/main/resources/node_home/node_home.j3o
Normal file
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 292 KiB |
|
After Width: | Height: | Size: 291 KiB |
|
After Width: | Height: | Size: 292 KiB |
BIN
Projekte/mdga/client/src/main/resources/radar/radar.j3o
Normal file
BIN
Projekte/mdga/client/src/main/resources/radar/radar_diff.png
Normal file
|
After Width: | Height: | Size: 298 KiB |
|
After Width: | Height: | Size: 39 KiB |
BIN
Projekte/mdga/client/src/main/resources/ship/ship.j3o
Normal file
BIN
Projekte/mdga/client/src/main/resources/ship/ship_diff.png
Normal file
|
After Width: | Height: | Size: 274 KiB |
BIN
Projekte/mdga/client/src/main/resources/smallTent/smallTent.j3o
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
Projekte/mdga/client/src/main/resources/swapCard/swapCard.j3o
Normal file
|
After Width: | Height: | Size: 47 KiB |
BIN
Projekte/mdga/client/src/main/resources/tank/tank.j3o
Normal file
BIN
Projekte/mdga/client/src/main/resources/tank/tank_diff.png
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
Projekte/mdga/client/src/main/resources/turboCard/turboCard.j3o
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
Projekte/mdga/client/src/main/resources/world/world.j3o
Normal file
BIN
Projekte/mdga/client/src/main/resources/world/world_diff.png
Normal file
|
After Width: | Height: | Size: 12 MiB |
@@ -32,3 +32,8 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
include 'mdga:client'
|
||||
findProject(':mdga:client')?.name = 'client'
|
||||
include 'mdga:client'
|
||||
findProject(':mdga:client')?.name = 'client'
|
||||
|
||||
|
||||