bloxstrap/Bloxstrap/AppData/RobloxPlayerData.cs
pizzaboxer 99ff002121
Abandon staging folder idea, use lockfile instead
thank you matt for helping me see sense through this one
2024-09-07 22:51:03 +01:00

31 lines
856 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bloxstrap.AppData
{
public class RobloxPlayerData : CommonAppData, IAppData
{
public string ProductName => "Roblox";
public string BinaryType => "WindowsPlayer";
public string RegistryName => "RobloxPlayer";
public override string ExecutableName => "RobloxPlayerBeta.exe";
public string StartEvent => "www.roblox.com/robloxStartedEvent";
public override string Directory => Path.Combine(Paths.Roblox, "Player");
public AppState State => App.State.Prop.Player;
public override IReadOnlyDictionary<string, string> PackageDirectoryMap { get; set; } = new Dictionary<string, string>()
{
{ "RobloxApp.zip", @"" }
};
}
}