feat: initialize Tab Shooter Chrome extension game

This commit is contained in:
Janik Dietz 2026-08-04 07:13:45 +02:00
commit 0f566b02ac
Signed by: Tronax
SSH key fingerprint: SHA256:2pKKXDZucWvaF/GzXNz0FY53EAO1YDLN80bqS+TTz/o
11 changed files with 1614 additions and 0 deletions

42
.gitignore vendored Normal file
View file

@ -0,0 +1,42 @@
# ---- Betriebssystem / Editor ----
.DS_Store
Thumbs.db
desktop.ini
*.swp
*.swo
*~
# ---- Editor-/IDE-Verzeichnisse ----
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# ---- ZCode-spezifisch ----
.zcode/
# ---- Logs & Temp ----
*.log
*.tmp
tmp/
# ---- Node (falls später Tooling dazukommt) ----
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# ---- Build-Output / Packete ----
dist/
build/
*.zip
*.crx # fertiges gepacktes Extension-Bundle
# ---- Python (für generate_icons.py) ----
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
env/