Ooui-tws-port/Samples/Program.cs

17 lines
263 B
C#
Raw Normal View History

2017-06-18 23:50:22 +00:00
using System;
using Ooui;
namespace Samples
{
class Program
{
static void Main (string[] args)
{
new ButtonSample ().Publish ();
new TodoSample ().Publish ();
Console.ReadLine ();
}
}
}