You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
376 B

#ifndef SPEICHERN
#define SPEICHERN
#include "Spieler.h"
void speichern_spielstand_historie(int** Historie, int anzahl_Zuege, const char* dateiName);
int laden_spielstand_historie(int*** Historie, int* anzahl_Zuege, const char* dateiName);
void speichern_spielstand_schachbrett(char** Brett, const char* dateiName);
void laden_spielstand_schachbrett();
#endif // SPEICHERN