Sweaty-Launcher/Common/IProxy.cs

18 lines
279 B
C#
Raw Permalink Normal View History

2023-02-11 02:19:10 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Launcher.Common
{
public interface IProxyController
{
bool _IsRun { get; set; }
void Start();
void Stop();
}
}