Files
NotAlwaysTrue 59bc21973a OBT/1.2.0(Spring Update)
Sync with Upstream
2026-04-25 13:25:41 +08:00

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; }
}