aboutsummaryrefslogtreecommitdiffstats
path: root/src/bishop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bishop.cpp')
-rw-r--r--src/bishop.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/bishop.cpp b/src/bishop.cpp
new file mode 100644
index 0000000..849db19
--- /dev/null
+++ b/src/bishop.cpp
@@ -0,0 +1,26 @@
+/*
+ *
+ * author: Yann Herklotz
+ * username: ymherklotz
+ * email: ymherklotz@gmail.com
+ * date created: 13/01/17
+ *
+ * -----------------------------------------------------------------------------
+ *
+ * Bishop class implementation
+ *
+ */
+
+#include "chess_piece.hpp"
+
+using namespace ymhChessAI;
+
+
+Bishop::Bishop() : ChessPiece() {
+}
+
+Bishop::Bishop(const int& x, const int& y, const Colour& colour) : ChessPiece(x, y, colour) {
+}
+
+void Bishop::move(const int& x, const int& y) {
+}