Ooui-tws-port/Ooui/UI.cs

21 lines
437 B
C#
Raw Normal View History

2017-06-14 01:37:03 +00:00
using System;
namespace Ooui
{
public static class UI
{
public static void Publish (string path, object value)
{
}
2017-06-15 06:38:58 +00:00
public static void Publish (string path, Func<object> ctor)
{
}
2017-06-14 01:37:03 +00:00
public static Element GetElementAtPath (string path)
{
throw new System.Collections.Generic.KeyNotFoundException ($"{path} does not exist");
}
}
}