mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
24 lines
429 B
Swift
24 lines
429 B
Swift
//
|
|
// ViewController.swift
|
|
// Persephone
|
|
//
|
|
// Created by Daniel Barber on 2018/7/31.
|
|
// Copyright © 2018 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
class ViewController: NSViewController {
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
override var representedObject: Any? {
|
|
didSet {
|
|
// Update the view, if already loaded.
|
|
}
|
|
}
|
|
}
|