- Removed LocalizationServices and other sus things. - Rewrote AssemblyLoader [In Progress] SafeStorageService [In Progress] LuaScriptLoader
13 lines
321 B
C#
13 lines
321 B
C#
using System.Collections.Immutable;
|
|
|
|
namespace Barotrauma.LuaCs.Data;
|
|
|
|
public partial interface IModConfigInfo : IAssembliesResourcesInfo,
|
|
ILuaScriptsResourcesInfo, IConfigsResourcesInfo,
|
|
IConfigProfilesResourcesInfo
|
|
{
|
|
// package info
|
|
ContentPackage Package { get; }
|
|
string PackageName { get; }
|
|
}
|