-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
69 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,42 @@ | ||
#ifndef MENU_POWERUPSETTINGS_H | ||
#define MENU_POWERUPSETTINGS_H | ||
#pragma once | ||
|
||
#include "uimenu.h" | ||
#include "uicontrol.h" | ||
#include "uicustomcontrol.h" | ||
|
||
class MI_Button; | ||
class MI_Image; | ||
class MI_SelectField; | ||
class MI_StoredPowerupResetButton; | ||
class MI_Text; | ||
|
||
/* | ||
In this menu, you can change some powerup settings, | ||
like fire rate, reloading of [?] blocks and bonus items. | ||
*/ | ||
|
||
class UI_PowerupSettingsMenu : public UI_Menu | ||
{ | ||
class UI_PowerupSettingsMenu : public UI_Menu { | ||
public: | ||
UI_PowerupSettingsMenu(); | ||
~UI_PowerupSettingsMenu(); | ||
|
||
private: | ||
MI_SelectField * miStoredPowerupDelayField; | ||
MI_SelectField * miItemRespawnField; | ||
MI_SelectField * miSwapStyleField; | ||
MI_SelectField * miBonusWheelField; | ||
MI_SelectField * miKeepPowerupField; | ||
MI_SelectField * miHiddenBlockRespawnField; | ||
MI_StoredPowerupResetButton * miStoredPowerupResetButton; | ||
MI_Button * miPowerupSettingsMenuBackButton; | ||
|
||
MI_Image * miPowerupSettingsMenuLeftHeaderBar; | ||
MI_Image * miPowerupSettingsMenuRightHeaderBar; | ||
MI_Text * miPowerupSettingsMenuHeaderText; | ||
MI_SelectField* miStoredPowerupDelayField = nullptr; | ||
MI_SelectField* miItemRespawnField = nullptr; | ||
MI_SelectField* miSwapStyleField = nullptr; | ||
MI_SelectField* miBonusWheelField = nullptr; | ||
MI_SelectField* miKeepPowerupField = nullptr; | ||
MI_SelectField* miHiddenBlockRespawnField = nullptr; | ||
MI_StoredPowerupResetButton* miStoredPowerupResetButton = nullptr; | ||
MI_Button* miPowerupSettingsMenuBackButton = nullptr; | ||
|
||
MI_Image* miPowerupSettingsMenuLeftHeaderBar = nullptr; | ||
MI_Image* miPowerupSettingsMenuRightHeaderBar = nullptr; | ||
MI_Text* miPowerupSettingsMenuHeaderText = nullptr; | ||
|
||
/* | ||
MI_Image * miPowerupSelectionDialogImage; | ||
MI_Text * miPowerupSelectionDialogExitText; | ||
MI_Text * miPowerupSelectionDialogTournamentText; | ||
MI_Button * miPowerupSelectionDialogYesButton; | ||
MI_Button * miPowerupSelectionDialogNoButton; | ||
MI_Image* miPowerupSelectionDialogImage = nullptr; | ||
MI_Text* miPowerupSelectionDialogExitText = nullptr; | ||
MI_Text* miPowerupSelectionDialogTournamentText = nullptr; | ||
MI_Button* miPowerupSelectionDialogYesButton = nullptr; | ||
MI_Button* miPowerupSelectionDialogNoButton = nullptr; | ||
*/ | ||
}; | ||
|
||
#endif // MENU_POWERUPSETTINGS_H |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.