9 lines
172 B
C#
9 lines
172 B
C#
[System.Serializable]
|
|
public class PlayerData
|
|
{
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
|
|
public int HighScore { get; set; }
|
|
}
|