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

iPhone

开发平台:

Objective-C

  1. #import "GameController.h"
  2. #import "MainView.h"
  3. @implementation GameController
  4. - (id)initWithView:(UIView *)view
  5. {
  6.     mainView = view;
  7.     if ((self == [[ super alloc] init]) != nil) {
  8.         
  9.     }
  10.     return self;
  11. }
  12. - (void)dealloc
  13. {
  14.     [ self dealloc ];
  15.     [super dealloc];
  16. }
  17. // 检查是否可以继续游戏(check Mess)
  18. - (bool)canContinueGame
  19. {
  20. }
  21.  // 开始游戏
  22. - (void)startGame
  23. {
  24.    
  25. }
  26. // 继续游戏
  27. - (void)continueGame
  28. {
  29.     
  30. }
  31. // 自定义游戏
  32. - (void)customGame
  33. {
  34. }
  35. // 显示关于
  36. - (void)showAbout
  37. {
  38.     [mainView showView: ABOUTVIEW];
  39. }
  40. // 退出游戏
  41. - (void)exitGame
  42. {
  43.     
  44. }
  45. @end