mirror of
https://github.com/WinDurango/WinDurango.git
synced 2025-12-30 15:39:43 -06:00
21 lines
553 B
C++
21 lines
553 B
C++
#pragma once
|
|
#include "Windows.Xbox.System.UserDisplayInfo.g.h"
|
|
|
|
namespace winrt::Windows::Xbox::System::implementation
|
|
{
|
|
struct UserDisplayInfo : UserDisplayInfoT<UserDisplayInfo>
|
|
{
|
|
UserDisplayInfo() = default;
|
|
UserDisplayInfo(hstring gamertag) : wdcfg(WinDurangoConfig::Instance()) {}
|
|
|
|
hstring Gamertag();
|
|
uint32_t GamerScore();
|
|
hstring ApplicationDisplayName();
|
|
hstring GameDisplayName();
|
|
int32_t Reputation();
|
|
UserAgeGroup AgeGroup();
|
|
Foundation::Collections::IVectorView<uint32_t> Privileges();
|
|
WinDurangoConfig& wdcfg;
|
|
};
|
|
}
|