view lamertetris/sources/hiscore_win.h @ 17:e9c503d896a6

flappyufo-0.230919-1_add_pkgbuild
author Przemyslaw <prymula76@outlook.com>
date Sat, 24 Feb 2024 17:47:35 +0100
parents 2787f5e749ae
children
line wrap: on
line source

/*
 * Lamer Tetris - moja implementacja kultowej gry
 * new version: 06-VIII-2021
 * Przemysław R. Pietraszczyk
 * Licencja: Public Domain
 * Powered by: Geany
*/

#ifndef HISCORE_H
#define HISCORE_H

#include <SDL2/SDL.h>
#include <SDL_ttf.h>
#include <string>
#include <cstdio>
#include <iostream>
#include <unistd.h>  // sleep  access
#include <windows.h>



class HiScore {
public:
    HiScore();
    ~HiScore();
    SDL_bool file_exist();
	void save_hiscore(int hi_score);
	int load_hiscore();
private:
	std::string FILE_NAME = "\\lamertetris.txt";
	std::string HOME = "HOMEPATH";

};
#endif //HISCORE_H