mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-31 21:03:43 +01:00
Add interfaces to non public/sealed classes referenced in public interfaces (#1808)
* Add interfaces to non public/sealed classes referenced in public interfaces * Fixed inheritdocs + made most classes internal * Add missing properties to IFate and Fate, fix documentation --------- Co-authored-by: goat <16760685+goaaats@users.noreply.github.com>
This commit is contained in:
parent
3994f528b8
commit
7947b896ea
55 changed files with 1466 additions and 584 deletions
|
|
@ -49,7 +49,7 @@ internal sealed unsafe partial class AetheryteList : IServiceType, IAetheryteLis
|
|||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
public AetheryteEntry? this[int index]
|
||||
public IAetheryteEntry? this[int index]
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
@ -84,7 +84,7 @@ internal sealed partial class AetheryteList
|
|||
public int Count => this.Length;
|
||||
|
||||
/// <inheritdoc/>
|
||||
public IEnumerator<AetheryteEntry> GetEnumerator()
|
||||
public IEnumerator<IAetheryteEntry> GetEnumerator()
|
||||
{
|
||||
for (var i = 0; i < this.Length; i++)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue