Write the introduction for the pong game

This commit is contained in:
GBA bot 2022-01-01 22:35:08 +00:00
parent 3a8ec51ce1
commit dcba19ed73
2 changed files with 16 additions and 1 deletions

View file

@ -7,4 +7,5 @@
- [Linux setup](./setup/linux.md) - [Linux setup](./setup/linux.md)
- [Windows setup]() - [Windows setup]()
- [Mac OS setup]() - [Mac OS setup]()
- [Building the game](./setup/building.md) - [Building the game](./setup/building.md)
- [Learn agb part I - pong](./pong/introduction.md)

View file

@ -0,0 +1,14 @@
# Learn agb part I - pong
In this section, we'll make a simple pong style game for the Game Boy Advance using `agb`.
You will learn:
* 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.
* How to add a static background.
* How to make a dynamic background for a score display.
* How to add music to your game.
* How to add sound effects to your game.
With this knowledge, you'll be well equipped to start making your own games!