@ -0,0 +1,12 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include "spieler.h"
#include "Moving.h"
#include "Turm.h"
bool istzugerlaubt_Turm(char** Brett, int startX, int startY, int endX, int endY, Player player) {
return true;
}
@ -0,0 +1,9 @@
#ifndef TURM_H
#define TURM_H
bool istzugerlaubt_Turm(char** Brett, int startX, int startY, int endX, int endY, Player player);
#endif // TURM_H