diff --git a/Barotrauma/BarotraumaShared/SharedSource/LuaCs/_Services/_Interfaces/ILuaScriptManagementService.cs b/Barotrauma/BarotraumaShared/SharedSource/LuaCs/_Services/_Interfaces/ILuaScriptManagementService.cs index 2117046da..0c8a938a2 100644 --- a/Barotrauma/BarotraumaShared/SharedSource/LuaCs/_Services/_Interfaces/ILuaScriptManagementService.cs +++ b/Barotrauma/BarotraumaShared/SharedSource/LuaCs/_Services/_Interfaces/ILuaScriptManagementService.cs @@ -1,19 +1,20 @@ #nullable enable -using System; -using System.Collections.Generic; using System.Collections.Immutable; -using System.Reflection; using System.Threading.Tasks; using Barotrauma.LuaCs.Data; -using FluentResults; using MoonSharp.Interpreter; -using MoonSharp.Interpreter.Interop; namespace Barotrauma.LuaCs; public interface ILuaScriptManagementService : IReusableService { + /// + /// The running instance, if available. + /// + /// + /// It is recommended to avoid using this directly if another API is available for the intended purposes. + /// Script? InternalScript { get; } object? GetGlobalTableValue(string tableName);