first commit

This commit is contained in:
Lukas Nöllemeyer 2024-08-16 17:20:07 +02:00
commit 85be45e2b8
18 changed files with 605 additions and 0 deletions

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
// 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": "Python: Module",
"type": "python",
"request": "launch",
"module": "main",
"justMyCode": true
}
]
}

24
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,24 @@
{
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "always"
},
"editor.rulers": [
120
],
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"cSpell.words": [
"blit",
"isort",
"PAGEDOWN",
"PAGEUP",
"tcod",
"tileset",
"tilesheet"
]
}