diff --git a/src/Bauernumwandlung.c b/src/Bauernumwandlung.c new file mode 100644 index 0000000..f232c77 --- /dev/null +++ b/src/Bauernumwandlung.c @@ -0,0 +1,20 @@ +#include +#include +#include +#include "spieler.h" +#include "Moving.h" +#include "Bauer.h" + +bool ist_umwandlung_gerlaubt_Bauer(char** Brett, int startX, int startY, int endX, int endY, Player player) { + + +} + +char bauer_umwandel_abfrage(){ + +} + +void bauer_umwandeln(){ + +} + diff --git a/src/Bauernumwandlung.h b/src/Bauernumwandlung.h new file mode 100644 index 0000000..70dc060 --- /dev/null +++ b/src/Bauernumwandlung.h @@ -0,0 +1,11 @@ +#ifndef BAUER_UM_H +#define BAUER_UM_H + +#include +#include "spieler.h" + +bool ist_umwandlung_gerlaubt_Bauer(char** Brett, int startX, int startY, int endX, int endY, Player player) { +char bauer_umwandel_abfrage(); +void bauer_umwandeln(); + +#endif // BAUER_UM_H