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