23 lines
426 B
C#
23 lines
426 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|