mkxp-sunshine/src/steam.h
2026-04-04 01:25:41 +04:00

26 lines
374 B
C++

#ifndef STEAM_H
#define STEAM_H
#include <string>
struct SteamPrivate;
class Steam{
public:
void unlock(const char *name);
void lock(const char *name);
bool isUnlocked(const char *name);
const std::string &userName() const;
const std::string &lang() const;
private:
Steam();
~Steam();
friend struct SharedStatePrivate;
SteamPrivate *p;
};
#endif // STEAM_H