tile manager

This commit is contained in:
2024-04-09 21:06:45 -04:00
parent 5dc4cdb5d4
commit 27193adf15
11 changed files with 137 additions and 58 deletions

2
.vscode/launch.json vendored
View File

@@ -13,7 +13,7 @@
"program": "${workspaceRoot}/target/debug/phos.exe",
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": "Build",
"preLaunchTask": "Build"
}
]
}

View File

@@ -1,3 +1,6 @@
{
"cmake.configureOnOpen": false
"cmake.configureOnOpen": false,
"rust-analyzer.linkedProjects": [
"Cargo.toml",
]
}

6
.vscode/tasks.json vendored
View File

@@ -3,10 +3,8 @@
"tasks": [
{
"type": "cargo",
"command": "",
"args": [
"build"
],
"command": "build",
"args": [],
"problemMatcher": [
"$rustc"
],