aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b41c919..81485f3 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -25,6 +25,16 @@ int main(int argc, char** argv) {
board.set_piece(piece);
board.print_board();
+
+ board.remove_piece(5, 3);
+
+ board.print_board();
+
+ board.move_piece(4, 6, 4, 4);
+ board.move_piece(4, 1, 4, 3);
+ board.move_piece(3, 6, 3, 5);
+
+ board.print_board();
return 0;
}