group2 0.1.0
CSE 125 Group 2
Loading...
Searching...
No Matches
TitleScreenUI.hpp
Go to the documentation of this file.
1
3
4#pragma once
5
8{
9 bool playClicked = false;
10 bool hostClicked = false;
11 bool settingsClicked = false;
12 bool exitClicked = false;
13};
14
15namespace title_screen_ui
16{
19} // namespace title_screen_ui
Definition TitleScreenUI.cpp:12
TitleScreenResult buildTitleScreen()
Render the landing menu and return any user action this frame.
Definition TitleScreenUI.cpp:13
Output from a single title-screen UI frame.
Definition TitleScreenUI.hpp:8
bool exitClicked
True if the user pressed "Exit" this frame.
Definition TitleScreenUI.hpp:12
bool hostClicked
True if the user pressed "Host" this frame.
Definition TitleScreenUI.hpp:10
bool playClicked
True if the user pressed "Play" this frame.
Definition TitleScreenUI.hpp:9
bool settingsClicked
True if the user pressed "Settings" this frame.
Definition TitleScreenUI.hpp:11