Feature/add about screen (#1)

Adds the "About" scene, which displays the version info and credits. The user can scroll up/down through this screen.
This commit is contained in:
Philippe Symons
2024-08-20 23:57:35 +02:00
committed by GitHub
parent 0ac60b6c02
commit bc7733cc36
25 changed files with 387 additions and 11 deletions

View File

@@ -15,6 +15,10 @@ MenuItemData gen1MenuEntries[] = {
.title = "Teach Pikachu Fly",
.onConfirmAction = gen1PrepareToTeachPikachu,
.itemParam = &MOVE_FLY
},
{
.title = "About",
.onConfirmAction = goToAboutScene
}
};
@@ -32,6 +36,10 @@ MenuItemData gen2MenuEntries[] = {
{
.title = "Unlock Decoration",
.onConfirmAction = goToGen2DecorationMenu
},
{
.title = "About",
.onConfirmAction = goToAboutScene
}
};
@@ -53,6 +61,10 @@ MenuItemData gen2CrystalMenuEntries[] = {
{
.title = "Unlock Decoration",
.onConfirmAction = goToGen2DecorationMenu
},
{
.title = "About",
.onConfirmAction = goToAboutScene
}
};