First version

This commit is contained in:
2022-04-11 17:28:18 +03:00
committed by GitHub
parent e1336093e3
commit a846fb892a
18 changed files with 1595 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
//
// main.m
// Tic-Tac-Toe
//
// Created by RUSlan on 23.03.14.
// Copyright (c) 2014 RUSlan. All rights reserved.
//
#import <Cocoa/Cocoa.h>
int main(int argc, const char * argv[])
{
return NSApplicationMain(argc, argv);
}