diff options
| author | nasr <nsrddyn@gmail.com> | 2025-10-13 02:01:24 +0200 |
|---|---|---|
| committer | nasr <nsrddyn@gmail.com> | 2025-10-13 02:01:24 +0200 |
| commit | e7cc5cb8e211d0e61392bbae0ad58fd09b3b7d48 (patch) | |
| tree | 095a94839490f04e44e5359184f80521d92eae8d | |
| parent | 604cf259912c812f1ab6b92e212bfe86b3b5fb4e (diff) | |
feature: gitignore
| -rw-r--r-- | .DS_Store | bin | 6148 -> 0 bytes | |||
| -rw-r--r-- | .cache/clangd/index/TETRIS.c.921B6337581477A4.idx | bin | 4906 -> 0 bytes | |||
| -rw-r--r-- | .cache/clangd/index/TETRIS.c.EC74E3FB69CEE55B.idx | bin | 4526 -> 0 bytes | |||
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | .vscode/c_cpp_properties.json | 23 | ||||
| -rw-r--r-- | .vscode/settings.json | 3 |
6 files changed, 3 insertions, 26 deletions
diff --git a/.DS_Store b/.DS_Store Binary files differdeleted file mode 100644 index 3eabbd6..0000000 --- a/.DS_Store +++ /dev/null diff --git a/.cache/clangd/index/TETRIS.c.921B6337581477A4.idx b/.cache/clangd/index/TETRIS.c.921B6337581477A4.idx Binary files differdeleted file mode 100644 index d501558..0000000 --- a/.cache/clangd/index/TETRIS.c.921B6337581477A4.idx +++ /dev/null diff --git a/.cache/clangd/index/TETRIS.c.EC74E3FB69CEE55B.idx b/.cache/clangd/index/TETRIS.c.EC74E3FB69CEE55B.idx Binary files differdeleted file mode 100644 index 5742a7a..0000000 --- a/.cache/clangd/index/TETRIS.c.EC74E3FB69CEE55B.idx +++ /dev/null diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8ad5e6a --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.cache/clangd/index +.vscode +.DS_Store diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index 0ecc223..0000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "configurations": [ - { - "name": "Mac", - "includePath": [ - "${workspaceFolder}/**" - ], - "defines": [], - "macFrameworkPath": [ - "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks" - ], - "compilerPath": "/usr/bin/gcc", - "cStandard": "c23", - "cppStandard": "c++23", - "intelliSenseMode": "macos-gcc-x64", - "compilerArgs": [ - "-I/opt/homebrew/Cellar/raylib/5.5/include", - "-L/opt/homebrew/Cellar/raylib/5.5/lib" - ] - } - ], - "version": 4 -}
\ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 22247a9..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "C_Cpp.errorSquiggles": "disabled" -} |
