11 lines
346 B
C#
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 ();
|
|
}
|
|
} |