CheckerboardView.h 279 B

12345678910111213141516
  1. //
  2. // CheckerboardView.h
  3. // Gomoku
  4. //
  5. // Created by Sekorm on 16/7/25.
  6. // Copyright © 2016年 HY. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface CheckerboardView : UIView
  10. - (void)backOneStep:(UIButton *)sender;
  11. - (void)newGame;
  12. - (void)changeBoardLevel;
  13. @end