mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 07:18:00 +01:00
25 lines
630 B
C#
25 lines
630 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Fie.Manager
|
|
{
|
|
public class FieSaveData
|
|
{
|
|
public int LanguageCode;
|
|
|
|
public int PlayerLevel = 1;
|
|
|
|
public string LastLoginedUserName = string.Empty;
|
|
|
|
public string LastLoginedPasswordPassword = string.Empty;
|
|
|
|
public Dictionary<int, int> CharacterExp = new Dictionary<int, int>();
|
|
|
|
public Dictionary<int, int> CharacterSkillPoint = new Dictionary<int, int>();
|
|
|
|
public Dictionary<int, int> PromotedCount = new Dictionary<int, int>();
|
|
|
|
public List<int> unlockedSkills = new List<int>();
|
|
|
|
public Dictionary<int, int> AchivemenetProgress = new Dictionary<int, int>();
|
|
}
|
|
}
|