KeepItUp/Assets/_Scripts/Systems/SaveSystem/PlayerData.cs
2022-07-19 15:14:28 +03:00

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; }
}