Show More
Commit Description:
Loads of new ideas, many from thinking about when I'm not coding and some from just now....
Commit Description:
Loads of new ideas, many from thinking about when I'm not coding and some from just now. Note that instead of doing leisure next, I'm doing events next. I honestly might switch back but I have ideas for dialog that fit nicely into a focus on events.
File last commit:
Show/Diff file:
Action:
.vscode/launch.json
20 lines | 704 B | application/json | JsonLexer
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Core Debugger",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build: Core Debug",
"program": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/isometric-park-fna.dll",
"args": [],
"env": {
"LD_LIBRARY_PATH": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/lib64",
"DYLD_LIBRARY_PATH": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1/osx"
},
"cwd": "${workspaceFolder}/isometric-park-fna/bin/Debug/netcoreapp3.1",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}