From eeffd80e50c615e5203cff110bd451eeef1446fe Mon Sep 17 00:00:00 2001 From: Gwilym Kuiper Date: Thu, 13 Oct 2022 20:27:51 +0100 Subject: [PATCH] Format the code better --- book/src/pong/03_sprites.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/book/src/pong/03_sprites.md b/book/src/pong/03_sprites.md index 77df0726..db0a4a2d 100644 --- a/book/src/pong/03_sprites.md +++ b/book/src/pong/03_sprites.md @@ -52,7 +52,8 @@ The third until the fifth is the ball, with various squashed states. The aseprite file defines tags for these sprites, being "Paddle End", "Paddle Mid", and "Ball". ```rust -use agb::{include_aseprite, +use agb::{ + include_aseprite, display::object::{Graphics, Tag} };