mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-14 17:21:28 -07:00
18 lines
452 B
C#
18 lines
452 B
C#
namespace Bloxstrap.Models.Persistable
|
|
{
|
|
public class State
|
|
{
|
|
public bool ShowFFlagEditorWarnings { get; set; } = true;
|
|
|
|
public bool PromptWebView2Install { get; set; } = true;
|
|
|
|
public AppState Player { get; set; } = new();
|
|
|
|
public AppState Studio { get; set; } = new();
|
|
|
|
public WindowState SettingsWindow { get; set; } = new();
|
|
|
|
public List<string> ModManifest { get; set; } = new();
|
|
}
|
|
}
|