aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2016-11-04 11:48:20 +0000
committerYann Herklotz <ymherklotz@gmail.com>2016-11-04 11:48:20 +0000
commit146e32f222be037993fd4d1ab6148eda6c895d08 (patch)
treef045f02ac66c25f19664a7c14bc2325db68f7689
downloadChessAI-146e32f222be037993fd4d1ab6148eda6c895d08.tar.gz
ChessAI-146e32f222be037993fd4d1ab6148eda6c895d08.zip
Initial commit
-rw-r--r--.gitignore29
-rw-r--r--README.md2
2 files changed, 31 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4581ef2
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,29 @@
+# Compiled Object files
+*.slo
+*.lo
+*.o
+*.obj
+
+# Precompiled Headers
+*.gch
+*.pch
+
+# Compiled Dynamic libraries
+*.so
+*.dylib
+*.dll
+
+# Fortran module files
+*.mod
+*.smod
+
+# Compiled Static libraries
+*.lai
+*.la
+*.a
+*.lib
+
+# Executables
+*.exe
+*.out
+*.app
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..8b05a40
--- /dev/null
+++ b/README.md
@@ -0,0 +1,2 @@
+# chess_ai
+A chess AI that was programmed parallel to a second year computing course and hence uses a lot of object oriented programming.