GenericMenuView.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. =======================================================================================
  3. Copyright (C) 2009-2011 id Software LLC, a ZeniMax Media company. All Right Reserved.
  4. This file is part of the DOOM Classic iOS v2.1 GPL Source Code.
  5. =======================================================================================
  6. */
  7. #import <UIKit/UIKit.h>
  8. #import <Foundation/Foundation.h>
  9. #import "UIFontButton.h"
  10. @interface GenericMenuView : UIView {
  11. IBOutlet UIScrollView * scrollView;
  12. IBOutlet UILabel * lastItem;
  13. IBOutlet UIFontButton * epi1Button;
  14. IBOutlet UIFontButton * epi2Button;
  15. IBOutlet UIFontButton * epi3Button;
  16. IBOutlet UIFontButton * epi4Button;
  17. int episodeSelection;
  18. IBOutlet UIFontButton * nextButton;
  19. IBOutlet UIFontLabel * nextLabel;
  20. }
  21. - (IBAction) BackToMain;
  22. - (IBAction) NextToMissions;
  23. - (IBAction) SelectEpisode1;
  24. - (IBAction) SelectEpisode2;
  25. - (IBAction) SelectEpisode3;
  26. - (IBAction) SelectEpisode4;
  27. @end