diff options
| author | Ray <[email protected]> | 2017-03-26 23:06:17 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-03-26 23:06:17 +0200 |
| commit | 5338bbf70d3e2c71fcbd0db54e14b6cf2d5616c3 (patch) | |
| tree | c3a808940096983ca9753ad0d546d1567be2120b /.gitignore | |
| parent | 2c0604aa29c720de03797ed102dfa3fe7f05f9b5 (diff) | |
| parent | 90b36bd274d523eb54700f71069558b15731adb0 (diff) | |
| download | raylib-5338bbf70d3e2c71fcbd0db54e14b6cf2d5616c3.tar.gz raylib-5338bbf70d3e2c71fcbd0db54e14b6cf2d5616c3.zip | |
Merge pull request #250 from raysan5/develop
Integrate develop branch
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -3,6 +3,8 @@ # Ignore VIM's backup generated files *.swp +*.swo +*~ # Ignore Android generated files and folders src_android/obj/ @@ -62,6 +64,17 @@ examples/* # Unignore examples Makefile !examples/Makefile +# Ignore all games files +games/* +# Unignore all games dirs +!games/*/ +# Unignore all games files with extension +!games/*.c +!games/*.lua +!games/*.png +# Unignore games makefile +!games/makefile + # Ignore files build by xcode *.mode*v* *.pbxuser |
