~starkingdoms/starkingdoms

ref: 1b4d868e7ed43b913d8daee7f71ff0bc038bebf4 starkingdoms/protocol/build.rs -rw-r--r-- 532 bytes
1b4d868e — core fix! change api and game urls (this should be the final in the flurry of commits i have pushed recently) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn main() {
    protobuf_codegen::Codegen::new()
        .cargo_out_dir("protos")
        .include("src/pbuf")
        .input("src/pbuf/starkingdoms-protocol.proto")
        .input("src/pbuf/message_c2s.proto")
        .input("src/pbuf/message_s2c.proto")
        .input("src/pbuf/planet.proto")
        .input("src/pbuf/player.proto")
        .input("src/pbuf/state.proto")
        .input("src/pbuf/goodbye_reason.proto")
        .input("src/pbuf/module.proto")
        .input("src/pbuf/input.proto")
        .run_from_script();
}