mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
28 lines
459 B
Swift
28 lines
459 B
Swift
|
|
//
|
||
|
|
// ViewController.swift
|
||
|
|
// AltServer
|
||
|
|
//
|
||
|
|
// Created by Riley Testut on 5/24/19.
|
||
|
|
// Copyright © 2019 Riley Testut. 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.
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
|