10 lines
227 B
C#
10 lines
227 B
C#
using System.Collections.Generic;
|
|
using System.Xml.Linq;
|
|
|
|
namespace Barotrauma.LuaCs.Data;
|
|
|
|
public interface IConfigProfileInfo : IDataInfo
|
|
{
|
|
IReadOnlyList<(string ConfigName, XElement Element)> ProfileValues { get; }
|
|
}
|