mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 02:21:27 -07:00
* add background updating * add RobloxState * fix potential race condition with RobloxState * update ForceRobloxReinstallation in menu * disable AssertReadOnlyDirectory * add storage space check * add logging to IsEligibleForBackgroundUpdate * add a setting to toggle background updates * fix mutex names being mixed up * update string * update strings * update strings
12 lines
260 B
C#
12 lines
260 B
C#
namespace Bloxstrap.Models.Persistable
|
|
{
|
|
public class RobloxState
|
|
{
|
|
public AppState Player { get; set; } = new();
|
|
|
|
public AppState Studio { get; set; } = new();
|
|
|
|
public List<string> ModManifest { get; set; } = new();
|
|
}
|
|
}
|