15 lines
256 B
C#
15 lines
256 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Viveport.Internal
|
|
{
|
|
internal struct LeaderboardEntry_t
|
|
{
|
|
internal int m_nGlobalRank;
|
|
|
|
internal int m_nScore;
|
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 64)]
|
|
internal string m_pUserName;
|
|
}
|
|
}
|