- Added XmlAttribute tags for ModConfig.xml defined properties. - GetType and GetImplementingTypes<T> rework.
10 lines
228 B
C#
10 lines
228 B
C#
using System.Collections.Generic;
|
|
using System.Xml.Linq;
|
|
|
|
namespace Barotrauma.LuaCs.Data;
|
|
|
|
public interface IConfigProfileInfo : IDataInfo
|
|
{
|
|
IReadOnlyList<(string SettingName, XElement Element)> ProfileValues { get; }
|
|
}
|