mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-18 23:17:51 +00:00
15 lines
267 B
C#
15 lines
267 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AutoClient.Modes
|
|||
|
{
|
|||
|
public interface IMode
|
|||
|
{
|
|||
|
void Start(ICodexInstance instance, int index);
|
|||
|
void Stop();
|
|||
|
}
|
|||
|
}
|