mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 03:40:46 +00:00
13 lines
330 B
C#
13 lines
330 B
C#
using QSB.Utility;
|
|
using System.Collections.Generic;
|
|
|
|
namespace QSB.SaveSync;
|
|
|
|
public static class QSBProfileManager
|
|
{
|
|
public static readonly List<QSBProfileData> _profiles = new();
|
|
public static QSBProfileData _currentProfile;
|
|
public static QSBProfileData mostRecentProfile
|
|
=> _profiles.MaxBy(x => x.lastModifiedTime);
|
|
}
|