Skip to content

Instantly share code, notes, and snippets.

@lmrrcc
lmrrcc / app.swift
Last active January 24, 2025 16:31
swift osx application without nib
import Cocoa
class WindowController: NSWindowController {
}
class AppDelegate: NSObject {
var mainWindow: NSWindow?
var mainController: NSWindowController?
}