diff options
author | Indrajith K L | 2022-03-22 02:20:02 +0530 |
---|---|---|
committer | Indrajith K L | 2022-03-22 02:20:02 +0530 |
commit | f5e60ac6142f5f3d71f5a6edc581094df840f12e (patch) | |
tree | 68b7071b9862082ce3d0943b8b1f76744e411642 /.gitignore | |
download | YEAD-haxe-f5e60ac6142f5f3d71f5a6edc581094df840f12e.tar.gz YEAD-haxe-f5e60ac6142f5f3d71f5a6edc581094df840f12e.tar.bz2 YEAD-haxe-f5e60ac6142f5f3d71f5a6edc581094df840f12e.zip |
Initial Commit
* Basic Entity System Implemented
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f3c021a --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +# 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 + +# Build Folders +export/
\ No newline at end of file |