forked from Misaki/GhostEngine
12 lines
193 B
C#
12 lines
193 B
C#
namespace Ghost.Editor.Core.Contracts;
|
|
|
|
public enum IconSize
|
|
{
|
|
Small,
|
|
Large
|
|
}
|
|
|
|
public interface IPreviewService
|
|
{
|
|
string GetIconPath(string path, bool isDirectory, IconSize size);
|
|
} |