12 lines
243 B
C#
12 lines
243 B
C#
using MoonSharp.Interpreter;
|
|
|
|
namespace Barotrauma.LuaCs.Services.Safe;
|
|
|
|
/// <summary>
|
|
/// Service for providing stateful functions and in-memory storage for lua functions
|
|
/// </summary>
|
|
public interface ILuaDataService : ILuaService
|
|
{
|
|
|
|
}
|