1 个不稳定版本
0.1.0 | 2019年12月20日 |
---|
#12 在 #riot-games
15KB
273 行
《云顶之弈》游戏客户端 API
《云顶之弈》的代理 API,对应于 Game Client API
示例
use runeterra_game_api::{Client, DEFAULT_PORT};
#[tokio::main]
async fn main() {
let client = Client::new(DEFAULT_PORT);
let result = client.get_static_decklist().await;
dbg!(&result);
}
lib.rs
:
《云顶之弈》的代理 API,对应于 Game Client API
示例
use runeterra_game_api::{Client, DEFAULT_PORT};
#[tokio::main]
async fn main() {
let client = Client::new(DEFAULT_PORT);
let result = client.get_static_decklist().await;
dbg!(&result);
}
依赖
~3–7.5MB
~174K SLoC