diff options
author | Henauxg <19689618+Henauxg@users.noreply.github.com> | 2023-01-17 20:43:15 +0100 |
---|---|---|
committer | Henauxg <19689618+Henauxg@users.noreply.github.com> | 2023-01-17 20:43:15 +0100 |
commit | c7b5954b92cb5d63e8c6818a31a840ffd2983813 (patch) | |
tree | 28c4fed0fa19415daa5c35a62d05e7c0b4360d4a /examples | |
parent | 1e7ef10aeeac969eb7253d86370cbc1ad7548fc9 (diff) |
[examples] Update example use paths
Diffstat (limited to 'examples')
-rw-r--r-- | examples/breakout/client.rs | 4 | ||||
-rw-r--r-- | examples/chat/client.rs | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/examples/breakout/client.rs b/examples/breakout/client.rs index 6c1e5dd..33873d3 100644 --- a/examples/breakout/client.rs +++ b/examples/breakout/client.rs @@ -15,7 +15,9 @@ use bevy::{ }, }; use bevy_quinnet::{ - client::{certificate::CertificateVerificationMode, Client, ConnectionConfiguration}, + client::{ + certificate::CertificateVerificationMode, connection::ConnectionConfiguration, Client, + }, shared::ClientId, }; diff --git a/examples/chat/client.rs b/examples/chat/client.rs index 366a254..6cb25e4 100644 --- a/examples/chat/client.rs +++ b/examples/chat/client.rs @@ -14,8 +14,9 @@ use bevy::{ }; use bevy_quinnet::{ client::{ - certificate::CertificateVerificationMode, Client, ConnectionConfiguration, ConnectionEvent, - QuinnetClientPlugin, + certificate::CertificateVerificationMode, + connection::{ConnectionConfiguration, ConnectionEvent}, + Client, QuinnetClientPlugin, }, shared::ClientId, }; |