Paths.cs 780 B

1234567891011121314
  1. namespace SRDebugger.Internal
  2. {
  3. public static class SRDebugPaths
  4. {
  5. public const string DataControlsResourcesPath = "SRDebugger/UI/Prefabs/Options";
  6. public const string TriggerPrefabPath = "SRDebugger/UI/Prefabs/Trigger";
  7. public const string DebugPanelPrefabPath = "SRDebugger/UI/Prefabs/DebugPanel";
  8. public const string PinnedUIPrefabPath = "SRDebugger/UI/Prefabs/PinnedUI";
  9. public const string DockConsolePrefabPath = "SRDebugger/UI/Prefabs/DockConsole";
  10. public const string PinEntryPrefabPath = "SRDebugger/UI/Prefabs/PinEntry";
  11. public const string BugReportPopoverPath = "SRDebugger/UI/Prefabs/BugReportPopover";
  12. public const string BugReportSheetPath = "SRDebugger/UI/Prefabs/BugReportSheet";
  13. }
  14. }