From f307db79e2d07a3870398dff278c74f98be07ca1 Mon Sep 17 00:00:00 2001 From: GBA bot Date: Sat, 1 Jan 2022 22:49:07 +0000 Subject: [PATCH] Rename to 01_introduction --- book/src/SUMMARY.md | 2 +- book/src/pong/{introduction.md => 01_introduction.md} | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) rename book/src/pong/{introduction.md => 01_introduction.md} (93%) diff --git a/book/src/SUMMARY.md b/book/src/SUMMARY.md index 2ea8f618..7e96fb03 100644 --- a/book/src/SUMMARY.md +++ b/book/src/SUMMARY.md @@ -8,4 +8,4 @@ - [Windows setup]() - [Mac OS setup]() - [Building the game](./setup/building.md) -- [Learn agb part I - pong](./pong/introduction.md) \ No newline at end of file +- [Learn agb part I - pong](./pong/01_introduction.md) diff --git a/book/src/pong/introduction.md b/book/src/pong/01_introduction.md similarity index 93% rename from book/src/pong/introduction.md rename to book/src/pong/01_introduction.md index f27d5a21..85187fac 100644 --- a/book/src/pong/introduction.md +++ b/book/src/pong/01_introduction.md @@ -3,6 +3,7 @@ In this section, we'll make a simple pong style game for the Game Boy Advance using `agb`. You will learn: +* How to use tiled graphics modes. * How to import graphics using `agb`. * What Game Boy Advance sprites are and how to put them on the screen. * How to detect button input and react to it.