SRDebugPaths.cs 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. namespace SRDebugger.Internal
  3. {
  4. public static class SRDebugPaths
  5. {
  6. public const string DataControlsResourcesPath = "SRDebugger/UI/Prefabs/Options";
  7. public const string TriggerPrefabPath = "SRDebugger/UI/Prefabs/Trigger";
  8. public const string DebugPanelPrefabPath = "SRDebugger/UI/Prefabs/DebugPanel";
  9. public const string PinnedUIPrefabPath = "SRDebugger/UI/Prefabs/PinnedUI";
  10. public const string DockConsolePrefabPath = "SRDebugger/UI/Prefabs/DockConsole";
  11. public const string PinEntryPrefabPath = "SRDebugger/UI/Prefabs/PinEntry";
  12. public const string BugReportPopoverPath = "SRDebugger/UI/Prefabs/BugReportPopover";
  13. public const string BugReportSheetPath = "SRDebugger/UI/Prefabs/BugReportSheet";
  14. public const string SettingsMenuItemPath = "Window/SRDebugger/Settings Window";
  15. public const string WelcomeItemPath = "Window/SRDebugger/Welcome Guide";
  16. public const string SROptionsMenuItemPath = "Window/SRDebugger/SROptions Window";
  17. public const string EditorLogoPath = "UI/Sprites/Default/Logo.psd";
  18. }
  19. }