Move Process list manager into a separate class

This commit is contained in:
Anton Kasyanov
2018-02-08 22:23:51 +02:00
parent 6bf73ad501
commit 7b5858287a
7 changed files with 200 additions and 73 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace EveOPreview.Services
{
public interface IProcessInfo
{
IntPtr Handle { get; }
string Title { get; }
}
}