TicTacToe/AAPLAppDelegate.m

/*
 
 Copyright (C) 2016 Apple Inc. All Rights Reserved.
 See LICENSE.txt for this sample’s licensing information
 
 Abstract:
 App delegate for a tic-tac-toe game demonstrating accessible custom controls using the accessibility methods of NSControl subclasses, accessibility protocols, and NSAccessibilityElement.
 
 */
 
#import "AAPLAppDelegate.h"
 
@interface AAPLAppDelegate ()
 
@property (weak) IBOutlet NSWindow *window;
 
@end
 
@implementation AAPLAppDelegate
 
@end