10 lines
186 B
C#
10 lines
186 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace EveOPreview.View
|
|
{
|
|
public interface IThumbnailViewFactory
|
|
{
|
|
IThumbnailView Create(IntPtr id, string title, Size size);
|
|
}
|
|
} |