10 lines
174 B
Rust
10 lines
174 B
Rust
|
use std::collections::HashMap;
|
||
|
|
||
|
use ::serde::Deserialize;
|
||
|
|
||
|
#[derive(Deserialize, Debug)]
|
||
|
pub struct Spell {
|
||
|
pub name: String,
|
||
|
pub effects: HashMap<String, String>,
|
||
|
}
|