Added (AI generated) raycaster and tank controls

This commit is contained in:
2026-03-13 15:28:29 +01:00
commit ed01f54ce2
17 changed files with 942 additions and 0 deletions

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

@@ -0,0 +1,25 @@
{
// 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": [
{
"name": "wolf_dart",
"request": "launch",
"type": "dart"
},
{
"name": "wolf_dart (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "wolf_dart (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
]
}