Fix NullReferenceException on start.
This commit is contained in:
20
Server/Scripting/Engine.cs
Normal file
20
Server/Scripting/Engine.cs
Normal file
@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using RageCoop.Core.Scripting;
|
||||
namespace RageCoop.Server.Scripting
|
||||
{
|
||||
internal class Engine:ScriptingEngine
|
||||
{
|
||||
public Engine() : base(typeof(ServerScript), Program.Logger)
|
||||
{
|
||||
|
||||
}
|
||||
public static void Load()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user