Car/Assets/StompyRobot/SRDebugger/Scripts/Internal/Paths.cs

15 lines
780 B
C#
Raw Permalink Normal View History

2025-01-02 11:32:58 +08:00
namespace SRDebugger.Internal
{
public static class SRDebugPaths
{
public const string DataControlsResourcesPath = "SRDebugger/UI/Prefabs/Options";
public const string TriggerPrefabPath = "SRDebugger/UI/Prefabs/Trigger";
public const string DebugPanelPrefabPath = "SRDebugger/UI/Prefabs/DebugPanel";
public const string PinnedUIPrefabPath = "SRDebugger/UI/Prefabs/PinnedUI";
public const string DockConsolePrefabPath = "SRDebugger/UI/Prefabs/DockConsole";
public const string PinEntryPrefabPath = "SRDebugger/UI/Prefabs/PinEntry";
public const string BugReportPopoverPath = "SRDebugger/UI/Prefabs/BugReportPopover";
public const string BugReportSheetPath = "SRDebugger/UI/Prefabs/BugReportSheet";
}
}