PingPong/PingPong/Main.cs

17 lines
224 B
C#
Raw Permalink Normal View History

2019-11-08 03:33:41 -06:00
using System;
using Gtk;
namespace PingPong
{
class MainClass
{
public static void Main (string[] args)
{
Application.Init ();
MainWindow win = new MainWindow ();
win.Show ();
Application.Run ();
}
}
}