slarny4/Demo1/Program.cs

13 lines
196 B
C#
Raw Permalink Normal View History

2024-10-28 12:42:04 +00:00
using Demo.UI;
2024-10-21 22:57:01 +00:00
2024-10-28 12:42:04 +00:00
namespace Demo
2024-10-21 22:57:01 +00:00
{
class Program
{
static void Main(string[] args)
{
2024-10-28 12:42:04 +00:00
MainMenu menu = new MainMenu();
menu.Show();
2024-10-23 09:52:43 +00:00
}
2024-10-21 22:57:01 +00:00
}
2024-10-24 08:50:32 +00:00
}