rhythmbullet/RhythmBullet/Program.cs
2021-12-23 21:33:01 -06:00

15 lines
238 B
C#
Executable File

using System;
namespace RhythmBullet
{
public static class Program
{
[STAThread]
static void Main()
{
using (var game = new RhythmBulletGame())
game.Run();
}
}
}