项目进展

This commit is contained in:
janing
2025-11-28 18:11:30 +08:00
parent 4db1caed6d
commit 8c7f70ae9b
12 changed files with 1605 additions and 0 deletions

31
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,31 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build pinball",
"type": "shell",
"command": "cd pinball-physics ; cargo build --target wasm32-unknown-unknown",
"problemMatcher": [],
"group": "build"
},
{
"label": "build server",
"type": "shell",
"command": "cd server-rust ; spacetime build",
"problemMatcher": [],
"group": "build"
},
{
"label": "build",
"dependsOn": [
"build pinball",
"build server"
],
"dependsOrder": "sequence",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}