using Lumina.Excel;
namespace Dalamud.Data;
///
/// A helper class to easily resolve Lumina data within Dalamud.
///
internal static class LuminaUtils
{
private static ExcelModule Module => Service.Get().Excel;
///
/// Initializes a new instance of the class using the default .
///
/// The type of Lumina sheet to resolve.
/// The id of the row to resolve.
/// A new object.
public static RowRef CreateRef(uint rowId) where T : struct, IExcelRow
{
return new(Module, rowId);
}
}