1
0
Fork 0
roguelike-game/src/raws/weapon_traits.rs

10 lines
180 B
Rust

use std::collections::HashMap;
use ::serde::Deserialize;
#[derive(Deserialize, Debug)]
pub struct WeaponTrait {
pub name: String,
pub effects: HashMap<String, String>,
}