From 2c3f101e1ab30ba85d4811131b156bbc945adce6 Mon Sep 17 00:00:00 2001 From: "Frank A. Krueger" Date: Tue, 13 Jun 2017 18:37:03 -0700 Subject: [PATCH] Scaffold UI class --- Ooui/UI.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Ooui/UI.cs 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"); + } + } +}