Browse Source

Erstellung der Bauerumwandlungsdatei, Luis Hahn

remotes/origin/Luis-Branch
Luis Hahn 11 months ago
parent
commit
44c5901d11
  1. 20
      src/Bauernumwandlung.c
  2. 11
      src/Bauernumwandlung.h

20
src/Bauernumwandlung.c

@ -0,0 +1,20 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#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(){
}

11
src/Bauernumwandlung.h

@ -0,0 +1,11 @@
#ifndef BAUER_UM_H
#define BAUER_UM_H
#include <stdbool.h>
#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
Loading…
Cancel
Save