Browse Source

erstellung der En Passaut datein, Luis Hahn

remotes/origin/Luis-Branch
Luis Hahn 11 months ago
parent
commit
c818316dd9
  1. 14
      src/En_Passaut.c
  2. 10
      src/En_Passaut.h

14
src/En_Passaut.c

@ -0,0 +1,14 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include "spieler.h"
#include "Moving.h"
#include "Bauer.h"
bool ist_En_Passaut_erlaubt_Bauer(char** Brett, int startX, int startY, int endX, int endY, Player player) {
}

10
src/En_Passaut.h

@ -0,0 +1,10 @@
#ifndef BAUER_EP_H
#define BAUER_EP_H
#include <stdbool.h>
#include "spieler.h"
bool ist_En_Passaut_erlaubt_Bauer(char** Brett, int startX, int startY, int endX, int endY, Player player);
#endif // BAUER_EP_H
Loading…
Cancel
Save