13 lines
165 B
C#
13 lines
165 B
C#
|
namespace RoR2.UI;
|
||
|
|
||
|
public struct LeaderboardInfo
|
||
|
{
|
||
|
public int rank;
|
||
|
|
||
|
public string userID;
|
||
|
|
||
|
public SurvivorIndex? survivorIndex;
|
||
|
|
||
|
public float timeInSeconds;
|
||
|
}
|