Browse Source

erstellen des Turmes, Luis Hahn

remotes/origin/Läufer-fertig,-Hendrik-Voß
Luis Hahn 11 months ago
parent
commit
018b55e15b
  1. 12
      src/Turm.c
  2. 9
      src/Turm.h

12
src/Turm.c

@ -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;
}

9
src/Turm.h

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