mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 18:27:24 +01:00
16 lines
501 B
C#
16 lines
501 B
C#
using System.Collections.Generic;
|
|
using Penumbra.GameData.Enums;
|
|
|
|
namespace Glamourer.Customization;
|
|
|
|
public interface ICustomizationManager
|
|
{
|
|
public IReadOnlyList<Race> Races { get; }
|
|
public IReadOnlyList<SubRace> Clans { get; }
|
|
public IReadOnlyList<Gender> Genders { get; }
|
|
|
|
public CustomizationSet GetList(SubRace race, Gender gender);
|
|
|
|
public ImGuiScene.TextureWrap GetIcon(uint iconId);
|
|
public string GetName(CustomName name);
|
|
}
|