Skip to main content

fable_data/qst/
mod.rs

1mod decode;
2mod encode;
3
4use crate::script::ScriptCall;
5
6#[derive(Debug,PartialEq)]
7pub struct Qst {
8    pub body: Vec<ScriptCall>
9}