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