GameController.h
上传用户:qhdwjd2004
上传日期:2020-12-29
资源大小:362k
文件大小:0k
源码类别:

iPhone

开发平台:

Objective-C

  1. #import <CoreFoundation/CoreFoundation.h>
  2. #import <Foundation/Foundation.h>
  3. #import <UIKit/UIKit.h>
  4. @interface GameController : NSObject
  5. {
  6. UIView *mainView;
  7. }
  8. - (id)initWithView:(UIView *)view;
  9. - (void)dealloc;
  10. - (bool)canContinueGame;
  11. - (void)startGame;
  12. - (void)continueGame;
  13. - (void)customGame;
  14. - (void)showAbout;
  15. - (void)exitGame;
  16. @end