Files
LuaCsForBarotraumaEP/Barotrauma/BarotraumaShared/SharedSource/LuaCs/Services/Compatibility/ILuaCsUtility.cs
T
MapleWheels c6713f37bb IT BUILDS!!!
- Removed LocalizationServices and other sus things.
- Rewrote AssemblyLoader
[In Progress] SafeStorageService
[In Progress] LuaScriptLoader
2026-02-07 20:10:52 -05:00

11 lines
338 B
C#

namespace Barotrauma.LuaCs.Services.Compatibility;
public interface ILuaCsUtility : ILuaCsShim
{
public bool CanReadFromPath(string file);
public bool CanWriteToPath(string file);
internal bool IsPathAllowedException(string path, bool write = true,
LuaCsMessageOrigin origin = LuaCsMessageOrigin.Unknown);
}