Files
project-reset/Assets/Plugins/LiveWatchLite/Scripts/Editor/WatchEditorServices.cs
2025-08-31 18:14:07 -04:00

11 lines
346 B
C#

using System;
namespace Ingvar.LiveWatch.Editor
{
public static class WatchEditorServices
{
public static WatchGUICache GUICache { get; set; } = new ();
public static WatchPreviewDrawer PreviewDrawer { get; set; } = new ();
public static WatchCellDividerDrawer CellDividerDrawer { get; set; } = new ();
}
}