Ooui-tws-port/Samples/ISample.cs

12 lines
157 B
C#
Raw Normal View History

2017-11-10 06:35:47 +00:00
using System;
using Ooui;
namespace Samples
{
public interface ISample
{
string Title { get; }
Element CreateElement ();
}
}