Initial Commit

This commit is contained in:
workinghard
2015-03-27 19:19:09 -07:00
commit 632265df74
14 changed files with 1626 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
//
// AppDelegate.swift
// Cube4Fun
//
// Created by Nik on 27.03.15.
// Copyright (c) 2015 DerNik. All rights reserved.
//
import Cocoa
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
@IBOutlet weak var window: NSWindow!
func applicationDidFinishLaunching(aNotification: NSNotification) {
// Insert code here to initialize your application
}
}