dias 0.2.0

Minimal cross-platform support for common platform specific things, intended for small games for web plus desktopy platforms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub struct Exiter;

impl Exiter {
    pub fn new() -> Self {
        Self
    }
}

impl super::Exiter for Exiter {
    fn exit(&mut self) {
        std::process::exit(0);
    }
}