@ -0,0 +1,16 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <ctype.h>
#include "Spieler.h"
#include "Moving.h"
#include "Dame.h"
bool istzugerlaubt_Dame(char** Brett, int startX, int startY, int endX, int endY, Player player){
// Überprüfe, ob der Zug auf dem Spielbrett liegt
if (endX < 0 || endX >= 8 || endY < 0 || endY >= 8)
return false;
}
@ -6,6 +6,7 @@
#include "Turm.h"
#include "Springer.h"
#include "Koenig.h"
bool istzugerlaubt(char** Brett, int startX, int startY, int endX, int endY, Player player) {