15 lines
235 B
Swift
15 lines
235 B
Swift
|
//
|
||
|
// SmallIconProvider.swift
|
||
|
// Evergreen
|
||
|
//
|
||
|
// Created by Brent Simmons on 12/16/17.
|
||
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Cocoa
|
||
|
|
||
|
protocol SmallIconProvider {
|
||
|
|
||
|
var smallIcon: NSImage? { get }
|
||
|
}
|