Files
RAGECOOP-V/Client/Scripting/Engine.cs

18 lines
375 B
C#
Raw Normal View History

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 12:04:02 +08:00
public Engine() : base(typeof(ClientScript), Main.Logger) { }
2022-05-31 19:35:01 -08:00
}
}