Scaffold UI class

This commit is contained in:
Frank A. Krueger 2017-06-13 18:37:03 -07:00
parent 97e031da9b
commit 2c3f101e1a
1 changed files with 16 additions and 0 deletions

16
Ooui/UI.cs Normal file
View File

@ -0,0 +1,16 @@
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");
}
}
}