MegaGlest/source/glest_game/steam/steam.h

28 lines
383 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;
Steam();
~Steam();
private:
//friend struct SharedStatePrivate;
SteamPrivate *p;
};
#endif // STEAM_H