10 lines
221 B
C#
10 lines
221 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace EveOPreview.Thumbnails
|
|
{
|
|
public interface IThumbnailFactory
|
|
{
|
|
IThumbnail Create(IThumbnailManager manager, IntPtr sourceWindow, string title, Size size);
|
|
}
|
|
} |