Add SmallIconProvider protocol. Objects that want an icon in the sidebar (and perhaps other places) can conform to this.

This commit is contained in:
Brent Simmons 2017-12-17 10:48:55 -08:00
parent adf5a5e784
commit da489b8271
1 changed files with 14 additions and 0 deletions

View File

@ -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 }
}