Add SmallIconProvider protocol. Objects that want an icon in the sidebar (and perhaps other places) can conform to this.
This commit is contained in:
parent
adf5a5e784
commit
da489b8271
|
@ -0,0 +1,14 @@
|
|||
//
|
||||
// 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 }
|
||||
}
|
Loading…
Reference in New Issue