c6713f37bb
- Removed LocalizationServices and other sus things. - Rewrote AssemblyLoader [In Progress] SafeStorageService [In Progress] LuaScriptLoader
11 lines
338 B
C#
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);
|
|
|
|
}
|