GameController.m
资源名称:PushBox.rar [点击查看]
上传用户:qhdwjd2004
上传日期:2020-12-29
资源大小:362k
文件大小:1k
源码类别:
iPhone
开发平台:
Objective-C
- #import "GameController.h"
- #import "MainView.h"
- @implementation GameController
- - (id)initWithView:(UIView *)view
- {
- mainView = view;
- if ((self == [[ super alloc] init]) != nil) {
- }
- return self;
- }
- - (void)dealloc
- {
- [ self dealloc ];
- [super dealloc];
- }
- // 检查是否可以继续游戏(check Mess)
- - (bool)canContinueGame
- {
- }
- // 开始游戏
- - (void)startGame
- {
- }
- // 继续游戏
- - (void)continueGame
- {
- }
- // 自定义游戏
- - (void)customGame
- {
- }
- // 显示关于
- - (void)showAbout
- {
- [mainView showView: ABOUTVIEW];
- }
- // 退出游戏
- - (void)exitGame
- {
- }
- @end