Working on Thumbnail List Update notifications

This commit is contained in:
Anton Kasyanov
2018-02-19 20:33:27 +02:00
parent 8110b5ce7e
commit b8d7c71f06
26 changed files with 129 additions and 59 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Drawing;
using EveOPreview.View;
namespace EveOPreview.UI
{
public interface IThumbnailViewFactory
{
IThumbnailView Create(IntPtr id, string title, Size size);
}
}