diff options
| author | Ray <[email protected]> | 2021-06-30 18:44:08 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-06-30 18:44:08 +0200 |
| commit | 5bca29c4215525444b219fa6d28dd10273ae7c6a (patch) | |
| tree | 96f93669952136299c20133b6534f9dfd43554df | |
| download | raylib-game-template-5bca29c4215525444b219fa6d28dd10273ae7c6a.tar.gz raylib-game-template-5bca29c4215525444b219fa6d28dd10273ae7c6a.zip | |
Initial commit
| -rw-r--r-- | .gitignore | 52 | ||||
| -rw-r--r-- | README.md | 2 |
2 files changed, 54 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c6127b3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,52 @@ +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf diff --git a/README.md b/README.md new file mode 100644 index 0000000..c55997e --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# raylib-game-template +A small template to start your raylib game |
