8 lines
184 B
C#
8 lines
184 B
C#
namespace ChaosBot.Services.ProgrammingLanguageInterpreter
|
|
{
|
|
public interface IProgrammingLanguageInterpreter
|
|
{
|
|
void Interpret(string content, string command);
|
|
}
|
|
}
|