24 lines
505 B
C#
24 lines
505 B
C#
using System;
|
|
|
|
namespace Oculus.Platform.Models
|
|
{
|
|
public class MatchmakingStats
|
|
{
|
|
public readonly uint DrawCount;
|
|
|
|
public readonly uint LossCount;
|
|
|
|
public readonly uint SkillLevel;
|
|
|
|
public readonly uint WinCount;
|
|
|
|
public MatchmakingStats(IntPtr o)
|
|
{
|
|
DrawCount = CAPI.ovr_MatchmakingStats_GetDrawCount(o);
|
|
LossCount = CAPI.ovr_MatchmakingStats_GetLossCount(o);
|
|
SkillLevel = CAPI.ovr_MatchmakingStats_GetSkillLevel(o);
|
|
WinCount = CAPI.ovr_MatchmakingStats_GetWinCount(o);
|
|
}
|
|
}
|
|
}
|