#region Usings using System; #endregion namespace Pong { static class Ohjelma { /// /// The main entry point for the application. /// static void Main(string[] args) { using (Peli game = new Peli()) { game.Run(); } } } }