update entities defs

This commit is contained in:
YK 2025-09-12 08:08:03 +03:00
parent 51eab50cf5
commit ec1bc78fdf
2 changed files with 5 additions and 3 deletions

View File

@ -9,9 +9,10 @@ impl Dashboard {
session: 12,
date: NaiveDate::from_ymd_opt(1488, 3, 19).unwrap(),
player: PlayerData {
first_name: "Ней".to_owned(),
last_name: "Визард".to_owned(),
alias: "Гигга".to_string(),
first_name: "Абоба".to_owned(),
last_name: "Амогус".to_owned(),
alias: "Такелажник".to_string(),
class: "Чувствительный молодой человек".to_string(),
image: "https://i.pinimg.com/736x/25/58/32/2558329d333fda61615da6ce50dcddda.jpg".to_owned(),
level: 8,
xp: 3231,

View File

@ -55,6 +55,7 @@ pub struct PlayerData {
pub first_name: String,
pub last_name: String,
pub alias: String,
pub class: String,
pub image: String,
pub level: u8,
pub xp: u32,