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