Skip to content

Commit 53e6f54

Browse files
committed
Moved all rendering logic to SnakeBoard.cpp; temporarily removed score rendering because of bug
1 parent 2045e31 commit 53e6f54

File tree

5 files changed

+293
-241
lines changed

5 files changed

+293
-241
lines changed

.gitignore

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
### macOS ###
2+
# General
3+
.DS_Store
4+
.AppleDouble
5+
.LSOverride
6+
7+
# Icon must end with two \r
8+
Icon
9+
10+
# Thumbnails
11+
._*
12+
13+
# Files that might appear in the root of a volume
14+
.DocumentRevisions-V100
15+
.fseventsd
16+
.Spotlight-V100
17+
.TemporaryItems
18+
.Trashes
19+
.VolumeIcon.icns
20+
.com.apple.timemachine.donotpresent
21+
22+
# Directories potentially created on remote AFP share
23+
.AppleDB
24+
.AppleDesktop
25+
Network Trash Folder
26+
Temporary Items
27+
.apdisk
28+
29+
### CMake ###
30+
CMakeCache.txt
31+
CMakeFiles
32+
CMakeScripts
33+
Testing
34+
Makefile
35+
cmake_install.cmake
36+
install_manifest.txt
37+
compile_commands.json
38+
CTestTestfile.cmake
39+
40+
### C++ ###
41+
# Prerequisites
42+
*.d
43+
44+
# Compiled Object files
45+
*.slo
46+
*.lo
47+
*.o
48+
*.obj
49+
50+
# Precompiled Headers
51+
*.gch
52+
*.pch
53+
54+
# Compiled Dynamic libraries
55+
*.so
56+
*.dylib
57+
*.dll
58+
59+
# Fortran module files
60+
*.mod
61+
*.smod
62+
63+
# Compiled Static libraries
64+
*.lai
65+
*.la
66+
*.a
67+
*.lib
68+
69+
# Executables
70+
*.exe
71+
*.out
72+
*.app
73+
74+
### CLion ###
75+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
76+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
77+
78+
.idea/
79+
80+
# CMake
81+
cmake-build-*/
82+
83+
# Mongo Explorer plugin
84+
.idea/**/mongoSettings.xml
85+
86+
# File-based project format
87+
*.iws
88+
89+
# IntelliJ
90+
out/
91+
92+
# mpeltonen/sbt-idea plugin
93+
.idea_modules/
94+
95+
# JIRA plugin
96+
atlassian-ide-plugin.xml
97+
98+
# Cursive Clojure plugin
99+
.idea/replstate.xml
100+
101+
# Crashlytics plugin (for Android Studio and IntelliJ)
102+
com_crashlytics_export_strings.xml
103+
crashlytics.properties
104+
crashlytics-build.properties
105+
fabric.properties
106+
107+
# Editor-based Rest Client
108+
.idea/httpRequests
109+
110+
# Android studio 3.1+ serialized cache file
111+
.idea/caches/build_file_checksums.ser
112+
113+
### CLion Patch ###
114+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
115+
116+
# *.iml
117+
# modules.xml
118+
# .idea/misc.xml
119+
# *.ipr
120+
121+
# Sonarlint plugin
122+
.idea/sonarlint

0 commit comments

Comments
 (0)