mirror of
https://github.com/risingPhil/PokeMe64.git
synced 2026-09-07 16:25:10 -05:00
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:
@@ -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
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user