FruitMachine-Swift/FruitMachine/AppleI/AppleScreenView.swift

19 lines
328 B
Swift

//
// AppleScreenView.swift
// FruitMachine
//
// Created by Christopher Rohl on 7/27/17.
// Copyright © 2017 Christopher Rohl. All rights reserved.
//
import Cocoa
class AppleScreenView: NSView {
override func draw(_ dirtyRect: NSRect) {
super.draw(dirtyRect)
// Drawing code here.
}
}