mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 02:21:27 -07:00
removed unnecessary using directives (System.Linq, System.Text, System.Threading.Tasks), changed the initialization of PackageDirectoryMap to use string.Empty instead of @"" for clarity, removed the set accessor from PackageDirectoryMap to make it read-only, as it is initialized directly.
23 lines
631 B
C#
23 lines
631 B
C#
using System.Collections.Generic;
|
|
|
|
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 AppState State => App.RobloxState.Prop.Player;
|
|
|
|
public override IReadOnlyDictionary<string, string> PackageDirectoryMap { get; } = new Dictionary<string, string>
|
|
{
|
|
{ "RobloxApp.zip", string.Empty }
|
|
};
|
|
}
|
|
}
|