27 lines
463 B
Swift
27 lines
463 B
Swift
//
|
|
// ViewController.swift
|
|
// dotBeatBar_old
|
|
//
|
|
// Created by Aaron Bieber on 7/26/19.
|
|
// Copyright © 2019 Aaron Bieber. 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.
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|