29 lines
492 B
C++
29 lines
492 B
C++
#pragma once
|
|
|
|
#include "4J_Profile.h"
|
|
|
|
class CSys
|
|
{
|
|
public:
|
|
// SIGNED IN
|
|
bool IsSignedIn(int iQuadrant);
|
|
bool IsSignedInLive(int iProf);
|
|
bool IsGuest(int iQuadrant);
|
|
|
|
// GAMERTAG
|
|
void SetFakeGamertag(char *name);
|
|
char* GetGamertag(int iPad);
|
|
wstring GetDisplayName(int iPad);
|
|
|
|
// PRIMARY PAD
|
|
int GetPrimaryPad();
|
|
void SetPrimaryPad(int iPad);
|
|
|
|
// MULTIPLAYER
|
|
bool AllowedToPlayMultiplayer(int iProf);
|
|
|
|
// VERSION
|
|
bool IsFullVersion();
|
|
|
|
void SetDebugFullOverride(bool bVal);
|
|
}; |