diff --git a/game/Cargo.toml b/game/Cargo.toml index cfcc6a6..f4c65e6 100644 --- a/game/Cargo.toml +++ b/game/Cargo.toml @@ -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" \ No newline at end of file +cgmath = "0.18" +discord-sdk = "0.1" \ No newline at end of file diff --git a/game/src/utilities/discord.rs b/game/src/utilities/discord.rs new file mode 100644 index 0000000..92a0fc3 --- /dev/null +++ b/game/src/utilities/discord.rs @@ -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, +} \ No newline at end of file