1
Fork 0
mirror of https://github.com/thegeneralist01/Scene-Manager-DevRepo synced 2026-01-11 23:50:29 +01:00
Scene-Manager-DevRepo/SceneManager/Utils/DeleteAllPaths.cs
2021-01-10 08:38:17 -07:00

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.");
}
}
}