forked from crawl/crawl
-
Notifications
You must be signed in to change notification settings - Fork 0
Understanding Startup.CC
AidenKoknat edited this page Nov 4, 2022
·
7 revisions
Aiden's findings :)
- Everything on the main menu is under startup.cc:
- entries[] contains the menu options along with the buttons that send the user to different screens.
- entries[0] is Classic Crawl, and entries[1] is choose game seed etc...
- entries is then stored into const auto& entry... idk what that is yet.
- entries[0] is Classic Crawl, and entries[1] is choose game seed etc...
- entries[] contains the menu options along with the buttons that send the user to different screens.
The menu options have to redirect to newgame.cc somehow, as that makes the game lol
Other significant stuff that needs to be looked into (and expanded upon once more stuff is figured out)
- btn
- MenuButton
- ^^ these two will def lead us to how it navigates pages (figure out how it goes to newgame.cc)