From 7808a298508e140298a5ef5f8d2a787bca0b22e0 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 20 Sep 2021 12:19:10 -0400 Subject: [PATCH] ... --- game/Cargo.toml | 3 ++- game/src/utilities/discord.rs | 9 +++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 game/src/utilities/discord.rs 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