mirror of
https://github.com/thegeneralist01/Scene-Manager-DevRepo
synced 2026-01-11 23:50:29 +01:00
Initial commit
This commit is contained in:
parent
296206f5b9
commit
fd12e1bea2
9 changed files with 1031 additions and 0 deletions
15
SceneManager/Utils/DeleteAllPaths.cs
Normal file
15
SceneManager/Utils/DeleteAllPaths.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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.");
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue