mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 15:37:55 -05:00
13 lines
333 B
C++
13 lines
333 B
C++
#ifndef LEGOGAMESTATE_H
|
|
#define LEGOGAMESTATE_H
|
|
|
|
class LegoGameState
|
|
{
|
|
public:
|
|
__declspec(dllexport) long Save(unsigned long p);
|
|
__declspec(dllexport) void SerializePlayersInfo(short p);
|
|
__declspec(dllexport) void SerializeScoreHistory(short p);
|
|
__declspec(dllexport) void SetSavePath(char *p);
|
|
};
|
|
|
|
#endif // LEGOGAMESTATE_H
|