mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
15 lines
230 B
C#
15 lines
230 B
C#
using System;
|
|
|
|
namespace Pong
|
|
{
|
|
public static class Program
|
|
{
|
|
[STAThread]
|
|
private static void Main()
|
|
{
|
|
using (var game = new GameMain())
|
|
game.Run();
|
|
}
|
|
}
|
|
}
|