Co-authored-by: azyges <aaaaaa@aaa.aaa> Co-authored-by: cake <admin@cakeandbanana.nl> Co-authored-by: defnotken <itsdefnotken@gmail.com> Reviewed-on: #131
21 lines
608 B
C#
21 lines
608 B
C#
using LightlessSync.API.Data;
|
|
|
|
namespace LightlessSync.PlayerData.Pairs;
|
|
|
|
/// <summary>
|
|
/// performance metrics for each pair handler
|
|
/// </summary>
|
|
public interface IPairPerformanceSubject
|
|
{
|
|
string Ident { get; }
|
|
string PlayerName { get; }
|
|
UserData UserData { get; }
|
|
bool IsPaused { get; }
|
|
bool IsDirectlyPaired { get; }
|
|
bool HasStickyPermissions { get; }
|
|
long LastAppliedApproximateVRAMBytes { get; set; }
|
|
long LastAppliedApproximateEffectiveVRAMBytes { get; set; }
|
|
long LastAppliedDataTris { get; set; }
|
|
long LastAppliedApproximateEffectiveTris { get; set; }
|
|
}
|