mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
9 lines
167 B
C#
9 lines
167 B
C#
using Netch.Models;
|
|
|
|
namespace Netch.Interfaces
|
|
{
|
|
public interface IModeController : IController
|
|
{
|
|
public void Start(Server server, Mode mode);
|
|
}
|
|
} |