mirror of
https://github.com/Dangoware/dmp-core.git
synced 2025-04-19 13:32:54 -05:00
24 lines
302 B
Rust
24 lines
302 B
Rust
use std::{marker::PhantomData, fs::File, path::PathBuf};
|
|
|
|
use font::Font;
|
|
|
|
pub enum Setting {
|
|
String {
|
|
name: String,
|
|
value: String
|
|
},
|
|
Int {
|
|
name: String,
|
|
value: i32
|
|
},
|
|
Bool {
|
|
name: String,
|
|
value: bool
|
|
},
|
|
|
|
}
|
|
|
|
pub struct Form {
|
|
|
|
}
|
|
|