15 lines
238 B
C#
Executable File
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();
|
|
}
|
|
}
|
|
}
|