mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-19 22:37:46 +01:00
19 lines
No EOL
394 B
C#
19 lines
No EOL
394 B
C#
using System.Collections.Generic;
|
|
using OtterGui.Classes;
|
|
|
|
namespace Penumbra.Mods;
|
|
|
|
public interface IMod
|
|
{
|
|
LowerString Name { get; }
|
|
|
|
public int Index { get; }
|
|
public int Priority { get; }
|
|
|
|
public int TotalManipulations { get; }
|
|
|
|
public ISubMod Default { get; }
|
|
public IReadOnlyList< IModGroup > Groups { get; }
|
|
|
|
public IEnumerable< ISubMod > AllSubMods { get; }
|
|
} |