This commit is contained in:
Evan Pratten 2021-09-20 12:19:10 -04:00
parent f6dfd7e4de
commit 7808a29850
2 changed files with 11 additions and 1 deletions

View File

@ -7,4 +7,5 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cgmath = "0.18"
cgmath = "0.18"
discord-sdk = "0.1"

View File

@ -0,0 +1,9 @@
//! Discord Rich Presence utilities
use discord_sdk::ds::{Discord, User, Wheel};
pub struct DiscordRpcClient {
pub discord: Discord,
pub user: User,
pub wheel: Wheel,
}