Skip to content

Commit 3cdf3e0

Browse files
committed
Initial commit
0 parents  commit 3cdf3e0

6 files changed

Lines changed: 3770 additions & 0 deletions

File tree

.gitattributes

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
###############################################################################
5+
*.obj text eol=crlf linguist-language=Lua working-tree-encoding=cp932
6+
*.anm text eol=crlf linguist-language=Lua working-tree-encoding=cp932
7+
*.scn text eol=crlf linguist-language=Lua working-tree-encoding=cp932
8+
*.cam text eol=crlf linguist-language=Lua working-tree-encoding=cp932
9+
*.tra text eol=crlf linguist-language=Lua working-tree-encoding=cp932
10+
*.obj2 text eol=lf linguist-language=Lua working-tree-encoding=utf8
11+
*.anm2 text eol=lf linguist-language=Lua working-tree-encoding=utf8
12+
*.scn2 text eol=lf linguist-language=Lua working-tree-encoding=utf8
13+
*.cam2 text eol=lf linguist-language=Lua working-tree-encoding=utf8
14+
*.tra2 text eol=lf linguist-language=Lua working-tree-encoding=utf8
15+
*.lua text eol=lf linguist-language=Lua working-tree-encoding=utf8

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Compiled Lua sources
2+
luac.out
3+
4+
# luarocks build files
5+
*.src.rock
6+
*.zip
7+
*.tar.gz
8+
9+
# Object files
10+
*.o
11+
*.os
12+
*.ko
13+
#*.obj
14+
*.elf
15+
16+
# Precompiled Headers
17+
*.gch
18+
*.pch
19+
20+
# Libraries
21+
*.lib
22+
*.a
23+
*.la
24+
*.lo
25+
*.def
26+
*.exp
27+
28+
# Shared objects (inc. Windows DLLs)
29+
*.dll
30+
*.so
31+
*.so.*
32+
*.dylib
33+
34+
# Executables
35+
*.exe
36+
*.out
37+
*.app
38+
*.i*86
39+
*.x86_64
40+
*.hex
41+

0 commit comments

Comments
 (0)