mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
Roblox now installs to /Roblox/Player/ instead of /Versions/<version guid> This is a checkpoint commit. No mod manager, no error checking, no fullscreen optimizations configuration. Only installing and launching Roblox. THIS WORKED FIRST TRY BY THE WAY
12 lines
255 B
C#
12 lines
255 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
public class AppState
|
|
{
|
|
public string VersionGuid { get; set; } = String.Empty;
|
|
|
|
public Dictionary<string, string> PackageHashes { get; set; } = new();
|
|
|
|
public int Size { get; set; }
|
|
}
|
|
}
|