23 lines
426 B
C#
Raw Normal View History

2018-09-11 00:05:34 -05:00
using System;
2019-01-22 19:33:25 -06:00
namespace RhythmBullet
2018-09-11 00:05:34 -05:00
{
/// <summary>
/// The main class.
/// </summary>
public static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
using (var game = new RhythmBulletGame())
{
game.Run();
}
}
}
}