Advertisement
redribben

Interaction Protocol

Nov 19th, 2015
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. //  InteractionDelegate.h
  3. //  tic tac toe
  4. //
  5. //  Created by Bogdan Michalchuk on 11/16/15.
  6. //  Copyright © 2015 PDXRR. All rights reserved.
  7. //
  8.  
  9. #ifndef InteractionDelegate_h
  10. #define InteractionDelegate_h
  11.  
  12. @protocol InteractionDelegate <NSObject>
  13.  
  14. - (void)startAnew;
  15. - (void)modifyXOSpotsWithIndex:(int)bTag;
  16.  
  17. - (void)interactionDone;
  18.  
  19. @end
  20.  
  21. #endif /* InteractionDelegate_h */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement