mirror of
https://github.com/thegeneralist01/Scene-Manager-DevRepo
synced 2026-01-11 07:30:40 +01:00
15 lines
388 B
C#
15 lines
388 B
C#
using Rage;
|
|
|
|
namespace SceneManager.Utils
|
|
{
|
|
internal static class DeleteAllPaths
|
|
{
|
|
internal static void Delete()
|
|
{
|
|
PathManager.Paths.ForEach(x => x.Delete());
|
|
PathManager.Paths.Clear();
|
|
Game.LogTrivial($"All paths deleted");
|
|
Game.DisplayNotification($"~o~Scene Manager\n~w~All paths deleted.");
|
|
}
|
|
}
|
|
}
|