Deiwos Alignment

This commit is contained in:
Kei-Luna
2026-04-28 14:55:14 +09:00
parent 1e4d93bab1
commit 1cac82d10d
3 changed files with 55 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ public class CharacterInfo
public int Exp { get; set; }
public uint Break { get; set; }
public int Evolue { get; set; }
public uint ProLevel { get; set; }
public int Trust { get; set; }
public uint WeaponUniqueId { get; set; }
public uint SkinId { get; set; }
@@ -45,6 +46,7 @@ public class CharacterInfo
Exp = ToUInt32(Exp),
Break = Break,
Evolue = ToUInt32(Evolue),
ProLevel = ProLevel,
Trust = ToUInt32(Trust)
}
};