mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 05:43:40 +01:00
chore: make all services with interfaces internal
This commit is contained in:
parent
ab9b7e1602
commit
5809cf5d7c
40 changed files with 67 additions and 86 deletions
|
|
@ -19,7 +19,7 @@ namespace Dalamud.Game.ClientState.Party;
|
|||
#pragma warning disable SA1015
|
||||
[ResolveVia<IPartyList>]
|
||||
#pragma warning restore SA1015
|
||||
public sealed unsafe partial class PartyList : IServiceType, IPartyList
|
||||
internal sealed unsafe partial class PartyList : IServiceType, IPartyList
|
||||
{
|
||||
private const int GroupLength = 8;
|
||||
private const int AllianceLength = 20;
|
||||
|
|
@ -130,7 +130,7 @@ public sealed unsafe partial class PartyList : IServiceType, IPartyList
|
|||
/// <summary>
|
||||
/// This collection represents the party members present in your party or alliance.
|
||||
/// </summary>
|
||||
public sealed partial class PartyList
|
||||
internal sealed partial class PartyList
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
int IReadOnlyCollection<PartyMember>.Count => this.Length;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue