16 lines
383 B
C#
16 lines
383 B
C#
using System;
|
|
using NLog;
|
|
|
|
namespace ChaosBot.Services.ProgrammingLanguageInterpreter
|
|
{
|
|
internal class LuaProgrammingLanguageInterpreter : IProgrammingLanguageInterpreter
|
|
{
|
|
private static readonly ILogger Logger = Program.GetLogger();
|
|
|
|
public void Interpret(string content)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|