using LOL.Assist.Core.Services;
namespace LOL.Assist.Core.IServices;
public interface IWindowService
{
///
/// 默认进程名称
///
public const string LolProcessName = "League of Legends";
///
/// 设置窗体位置
///
WindowService.GetWindowsProcess.Rect? GetWindowsRectLocation(string name = LolProcessName);
///
/// 设置窗体大小
///
bool SetWindowsSize(int x, int y, string name = LolProcessName);
}