mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
17 lines
406 B
C#
17 lines
406 B
C#
using System.IO;
|
|
|
|
namespace Bloxstrap.Helpers
|
|
{
|
|
static class IntegrationMigrator
|
|
{
|
|
public static void Execute()
|
|
{
|
|
// v2.2.0 - remove rbxfpsunlocker
|
|
string rbxfpsunlocker = Path.Combine(Directories.Integrations, "rbxfpsunlocker");
|
|
|
|
if (Directory.Exists(rbxfpsunlocker))
|
|
Directory.Delete(rbxfpsunlocker, true);
|
|
}
|
|
}
|
|
}
|