- ContentPackageInfoLookup Service completed. - Implemented ModConfigService.cs - Implemented some of the resource processors.
24 lines
833 B
C#
24 lines
833 B
C#
using System.Collections.Immutable;
|
|
using System.Globalization;
|
|
|
|
namespace Barotrauma.LuaCs.Data;
|
|
|
|
public partial record ModConfigInfo : IModConfigInfo
|
|
{
|
|
public ImmutableArray<IStylesResourceInfo> Styles { get; init; }
|
|
}
|
|
|
|
public record StylesResourceInfo : IStylesResourceInfo
|
|
{
|
|
public Platform SupportedPlatforms { get; init; }
|
|
public Target SupportedTargets { get; init; }
|
|
public int LoadPriority { get; init; }
|
|
public ImmutableArray<string> FilePaths { get; init; }
|
|
public bool Optional { get; init; }
|
|
public ImmutableArray<CultureInfo> SupportedCultures { get; init; }
|
|
public string InternalName { get; init; }
|
|
public ContentPackage OwnerPackage { get; init; }
|
|
public string FallbackPackageName { get; init; }
|
|
public ImmutableArray<IPackageDependency> Dependencies { get; init; }
|
|
}
|