Files
ClubPenguinClient/MareSynchronos/UI/Components/IDrawFolder.cs
2023-10-24 01:57:31 +02:00

12 lines
202 B
C#

namespace MareSynchronos.UI.Components;
public interface IDrawFolder
{
int TotalPairs { get; }
int OnlinePairs { get; }
IEnumerable<DrawUserPair> DrawPairs { get; }
void Draw();
}