mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 01:51:29 -07:00
16 lines
389 B
C#
16 lines
389 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
public class State
|
|
{
|
|
public bool ShowFFlagEditorWarning { get; set; } = true;
|
|
|
|
public bool PromptWebView2Install { get; set; } = true;
|
|
|
|
public AppState Player { get; set; } = new();
|
|
|
|
public AppState Studio { get; set; } = new();
|
|
|
|
public List<string> ModManifest { get; set; } = new();
|
|
}
|
|
}
|