ryot 0.2.2

MMORPG library based on the concepts of open tibia written in rust and bevy.
Documentation
1
2
3
4
5
6
7
8
use std::io::Result;
fn main() -> Result<()> {
    prost_build::compile_protos(
        &["src/appearances/appearances.proto"],
        &["src/appearances/"],
    )?;
    Ok(())
}