Files
LightlessClient/LightlessSync/PlayerData/Pairs/IPairPerformanceSubject.cs
2025-11-25 07:14:59 +09:00

17 lines
470 B
C#

using LightlessSync.API.Data;
namespace LightlessSync.PlayerData.Pairs;
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; }
}