mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
fb56735fbd
* SetSavePath 100% match * fix naming convention
21 lines
514 B
C++
21 lines
514 B
C++
#ifndef LEGOGAMESTATE_H
|
|
#define LEGOGAMESTATE_H
|
|
|
|
#include "mxtypes.h"
|
|
|
|
class LegoGameState
|
|
{
|
|
public:
|
|
__declspec(dllexport) LegoGameState();
|
|
__declspec(dllexport) ~LegoGameState();
|
|
__declspec(dllexport) MxResult Load(MxULong);
|
|
__declspec(dllexport) MxResult Save(MxULong p);
|
|
__declspec(dllexport) void SerializePlayersInfo(MxS16 p);
|
|
__declspec(dllexport) void SerializeScoreHistory(MxS16 p);
|
|
__declspec(dllexport) void SetSavePath(char *p);
|
|
|
|
private:
|
|
char *m_savePath;
|
|
};
|
|
|
|
#endif // LEGOGAMESTATE_H
|