smash 0.0.0-alpha.4

Placeholder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod types;
mod proxy;
mod owner;
mod world;

pub use types::*;
pub use proxy::*;
pub use owner::*;
pub use world::*;

pub async fn join() {
    WORLD.join().await
}

pub async fn stop() {
    WORLD.stop().await
}