add android target and update repo structure

This commit is contained in:
2025-09-04 11:06:35 +02:00
parent 8a2d9f216b
commit b65c6177da
43 changed files with 1064 additions and 279 deletions

22
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,22 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "DesktopLauncher",
"request": "launch",
"mainClass": "org.ngengine.platform.DesktopLauncher",
"projectName": "platform-desktop"
}
]
}