GeometryDash/Save.hpp

47 lines
495 B
C++
Raw Permalink Normal View History

2016-04-30 13:31:37 +02:00
#ifndef SAVE
#define SAVE
struct Level;
struct Info;
class Save
{
public:
Save();
~Save();
void LoadData();
void SaveData();
Level ** TabLevel;
Info * UserInfo;
int * data;
int lenght;
int nblevel;
};
class Level
{
public:
int normalprogress;
int practiseprogress;
};
class Info
{
public:
int nbattemp;
int nbjump;
int nbtime;
int completlevel;
int perso;
2016-05-13 23:07:30 +02:00
int mini;
2016-04-30 13:31:37 +02:00
};
#endif