mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 02:21:27 -07:00
29 lines
782 B
C#
29 lines
782 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 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", @"" }
|
|
};
|
|
}
|
|
}
|