-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
51 lines (47 loc) · 982 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# ignore temporary development files
*.o
*.a
*.d
.depend
# ignore automatically generated files
# - This has been modified, the original source would compile/generate some
# of the assets manually from sprite sheets which would break compiling.
# Changes now allow it to compile (not the best but it works).
src/conftime.h
src/conf_gfx.h
src/conf_snd.h
src/conf_mus.h
src/conf_chr.c
src/conf_chr.h
src/conf_cus.c
src/conf_cus.h
src/conf_grp.c
src/conf_grp.h
src/conf_e2g.c
src/conf_esg.c
src/conf_e2s.c
src/conf_fnt.c
src/conf_g2s.c
src/conf_g2m.c
#src/conf_var.c
src/conf_act.c
# graphics/gfx_classic/*.png
# graphics/gfx_classic/RocksCE.ilbm
# graphics/gfx_classic/overlay/VirtualButtons.png
# ignore compiled executable files
rocksndiamonds
rocksndiamonds.exe
rocksndiamonds_headless
run_tests
.DS_Store
.idea/
cmake-build-debug/
calgrind.out*
.vscode/
src/.vscode/
src/ai/stats/*
src/ai/logs/*
src/ai/replays/*
build