GameController.h
资源名称:PushBox.rar [点击查看]
上传用户:qhdwjd2004
上传日期:2020-12-29
资源大小:362k
文件大小:0k
源码类别:
iPhone
开发平台:
Objective-C
- #import <CoreFoundation/CoreFoundation.h>
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @interface GameController : NSObject
- {
- UIView *mainView;
- }
- - (id)initWithView:(UIView *)view;
- - (void)dealloc;
- - (bool)canContinueGame;
- - (void)startGame;
- - (void)continueGame;
- - (void)customGame;
- - (void)showAbout;
- - (void)exitGame;
- @end