diff options
author | Henauxg <19689618+Henauxg@users.noreply.github.com> | 2023-03-07 15:26:38 +0100 |
---|---|---|
committer | Henauxg <19689618+Henauxg@users.noreply.github.com> | 2023-03-07 15:26:38 +0100 |
commit | 265696e477c7eda6e56c60be3a14773844f6e1aa (patch) | |
tree | 399b016e4c2e8078fa37b5cdbda39f96a62929ba | |
parent | 8b0168ebfff8ab5a253cb2bf61a4a395c4609474 (diff) |
[shared] Make AsyncRuntime public
-rw-r--r-- | src/shared.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared.rs b/src/shared.rs index bb8bd09..fa86ab2 100644 --- a/src/shared.rs +++ b/src/shared.rs @@ -16,7 +16,7 @@ pub type ClientId = u64; pub mod channel; #[derive(Resource, Deref, DerefMut)] -pub(crate) struct AsyncRuntime(pub(crate) Runtime); +pub struct AsyncRuntime(pub(crate) Runtime); pub(crate) type InternalConnectionRef = quinn::Connection; /// Enum with possibles errors that can occur in Bevy Quinnet |