add lcemp networking + ps3 support
YES I KNOW ITS GARBAGE, THATS WHY ITS NOT ON MAIN ILL FIX IT UP IN FUTURE COMMITS THEN MERGE TO MAIN
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
|
||||
#pragma once
|
||||
//#include "stdafx.h"
|
||||
|
||||
|
||||
// Note - there are now 3 types of PlayerUID
|
||||
@@ -19,6 +20,7 @@ class PlayerUID
|
||||
CellSysutilUserId m_userID; // user logged on to the XMB
|
||||
|
||||
public:
|
||||
ULONGLONG XUID;
|
||||
|
||||
class Hash
|
||||
{
|
||||
@@ -29,6 +31,8 @@ public:
|
||||
PlayerUID();
|
||||
PlayerUID(CellSysutilUserId userID, SceNpOnlineId& onlineID, bool bSignedInPSN, int quadrant);
|
||||
PlayerUID(std::wstring fromString);
|
||||
PlayerUID(ULONGLONG xuid) { XUID = xuid; }
|
||||
operator ULONGLONG() const { return XUID; }
|
||||
|
||||
bool operator==(const PlayerUID& rhs) const;
|
||||
bool operator!=(const PlayerUID& rhs);
|
||||
|
||||
Reference in New Issue
Block a user