Files
eveo/Eve-O-Preview/Services/Interface/IThumbnailManager.cs
Anton Kasyanov 42be487d31 Method names fix
2018-02-19 21:18:23 +02:00

15 lines
293 B
C#

using System;
using System.Drawing;
namespace EveOPreview.Services
{
public interface IThumbnailManager
{
void Start();
void Stop();
void SetThumbnailState(IntPtr thumbnailId, bool hideAlways);
void SetThumbnailsSize(Size size);
void SetupThumbnailFrames();
}
}