17 lines
336 B
C#
17 lines
336 B
C#
|
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");
|
||
|
}
|
||
|
}
|
||
|
}
|