mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
Bloxstrap now attempts to identify the log file *when* Roblox launches, then passes it to the watcher It does this so that it can determine if Roblox fails to launch
12 lines
221 B
C#
12 lines
221 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
internal class WatcherData
|
|
{
|
|
public int ProcessId { get; set; }
|
|
|
|
public string? LogFile { get; set; }
|
|
|
|
public List<int>? AutoclosePids { get; set; }
|
|
}
|
|
}
|