設計変更

This commit is contained in:
akiranishikawa
2020-09-20 06:04:03 +09:00
parent 5d2a4b4d4c
commit d3b368b680
4 changed files with 112 additions and 79 deletions

View File

@@ -1,4 +1,15 @@
pub fn detection() {
pub struct System {
}
impl System {
pub fn new() -> System {
System{}
}
pub fn detection(&self) {
}
}