diff --git a/Ooui/UI.cs b/Ooui/UI.cs new file mode 100644 index 0000000..25089f6 --- /dev/null +++ b/Ooui/UI.cs @@ -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"); + } + } +}