Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //
- // BMGameDynamics.h
- // tic tac toe
- //
- // Created by Bogdan Michalchuk on 10/27/15.
- // Copyright © 2015 PDXRR. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "PlayerDelegate.h"
- #import "InteractionDelegate.h"
- @interface BMGameDynamics : NSObject <InteractionDelegate, NSCoding> {
- int xoSpots[9];
- }
- @property (nonatomic) int tillCatsGame;
- @property (nonatomic) BMPlayerType playersTurn;
- @property (nonatomic, weak) id<PlayerDelegate>pDelegate;
- - (NSArray*)returnSpotArray;
- - (void)setXOSpots:(NSArray*)incomingValues;
- //- (void) saveGameState;
- //- (BOOL)loadGameState;
- @end
Advertisement
Add Comment
Please, Sign In to add comment