2022-05-31 19:35:01 -08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.CodeDom.Compiler;
|
|
|
|
|
|
|
|
|
|
namespace RageCoop.Client.Scripting
|
|
|
|
|
{
|
|
|
|
|
internal class Engine : Core.Scripting.ScriptingEngine
|
|
|
|
|
{
|
2022-06-04 18:09:42 +08:00
|
|
|
|
public Engine() : base("RageCoop.Client.Scripting.ClientScript", Main.Logger) { }
|
2022-05-31 19:35:01 -08:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|