-
Notifications
You must be signed in to change notification settings - Fork 0
newgroundsiodotnet.datamodels.score
GlitchyPSIX edited this page Mar 30, 2025
·
4 revisions
Namespace: NewgroundsIODotNet.DataModels
Represents a singular score.
public struct Score
Inheritance Object → ValueType → Score
Attributes IsReadOnlyAttribute
Formatted value for the Score.
public string FormattedValue { get; }
Tag attached to the Score
public string Tag { get; }
User that holds this Score. If null, assume current player.
public Nullable<User> User { get; }
Raw integer value of the score.
public int Value { get; }
Score(string formattedValue, string tag, int value, User user)
formattedValue
String
tag
String
value
Int32
user
User
string ToString()