aboutsummaryrefslogtreecommitdiff
path: root/server/examples/client.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/examples/client.rs')
-rw-r--r--server/examples/client.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/server/examples/client.rs b/server/examples/client.rs
index 80ba8ffa..70b1bb00 100644
--- a/server/examples/client.rs
+++ b/server/examples/client.rs
@@ -15,15 +15,13 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
+use hurrycurry_protocol::{glam::Vec2, PacketC, PacketS};
use std::{
io::{stdin, BufRead, BufReader, Write},
net::TcpStream,
thread,
};
-use glam::Vec2;
-use hurrycurry_protocol::{PacketC, PacketS};
-
fn main() {
let mut sock = TcpStream::connect("127.0.0.1:27031").unwrap();