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