mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-13 20:24:17 +01:00
Glamourer-related changes.
This commit is contained in:
parent
a7ace8a8c8
commit
9e0c38169f
15 changed files with 184 additions and 90 deletions
|
|
@ -10,7 +10,7 @@ namespace Penumbra.GameData.Data;
|
|||
|
||||
public sealed class HumanModelList : DataSharer
|
||||
{
|
||||
public const string Tag = "HumanModels";
|
||||
public const string Tag = "HumanModels";
|
||||
public const int CurrentVersion = 1;
|
||||
|
||||
private readonly BitArray _humanModels;
|
||||
|
|
@ -24,6 +24,9 @@ public sealed class HumanModelList : DataSharer
|
|||
public bool IsHuman(uint modelId)
|
||||
=> modelId < _humanModels.Count && _humanModels[(int)modelId];
|
||||
|
||||
public int Count
|
||||
=> _humanModels.Count;
|
||||
|
||||
protected override void DisposeInternal()
|
||||
{
|
||||
DisposeTag(Tag);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue