Files
hayabusa/src/detections/system.rs
akiranishikawa d3b368b680 設計変更
2020-09-20 06:04:03 +09:00

15 lines
135 B
Rust

pub struct System {
}
impl System {
pub fn new() -> System {
System{}
}
pub fn detection(&self) {
}
}