rhythmbullet/RhythmBullet/Program.cs

23 lines
426 B
C#
Raw Normal View History

2018-09-11 05:05:34 +00:00
using System;
namespace RhythmBullet
{
/// <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();
}
}
}
}