From b03362ec3107fc099935d62198775b0ca399d8cd Mon Sep 17 00:00:00 2001 From: Luis Hahn Date: Mon, 5 Feb 2024 17:35:47 +0100 Subject: [PATCH] Erstellern der Speicher.c um einen Spielstand zu speichern, Luis Hahn --- src/Speichern.c | 10 ++++++++++ src/Speichern.h | 8 ++++++++ 2 files changed, 18 insertions(+) create mode 100644 src/Speichern.c create mode 100644 src/Speichern.h diff --git a/src/Speichern.c b/src/Speichern.c new file mode 100644 index 0000000..958a0c3 --- /dev/null +++ b/src/Speichern.c @@ -0,0 +1,10 @@ +#include +#include +#include "Schachbrett.h" +#include "Bauer.h" +#include "Spieler.h" +#include "Historie.h" + +void speichern_spielstand_historie(int** Historie, int anzahl_Zuege, const char* dateiName) { + +} \ No newline at end of file diff --git a/src/Speichern.h b/src/Speichern.h new file mode 100644 index 0000000..40b0790 --- /dev/null +++ b/src/Speichern.h @@ -0,0 +1,8 @@ +#ifndef SPEICHERN +#define SPEICHERN + +#include "Spieler.h" + +void speichern_spielstand_historie(int** Historie, int anzahl_Zuege, const char* dateiName); + +#endif // SPEICHERN