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

  1. #ifndef SPEICHERN
  2. #define SPEICHERN
  3. #include "Spieler.h"
  4. void speichern_spielstand_historie(int** Historie, int anzahl_Zuege, const char* dateiName);
  5. int laden_spielstand_historie(int*** Historie, int* anzahl_Zuege, const char* dateiName);
  6. void speichern_spielstand_schachbrett(char** Brett, const char* dateiName);
  7. void laden_spielstand_schachbrett();
  8. #endif // SPEICHERN