Ooui-tws-port/Ooui/UI.cs

17 lines
336 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)
{
}
public static Element GetElementAtPath (string path)
{
throw new System.Collections.Generic.KeyNotFoundException ($"{path} does not exist");
}
}
}