rhythmbullet/RhythmBullet/Program.cs

15 lines
238 B
C#
Raw Normal View History

2018-09-11 05:05:34 +00:00
using System;
2019-01-23 01:33:25 +00:00
namespace RhythmBullet
2018-09-11 05:05:34 +00:00
{
public static class Program
{
[STAThread]
static void Main()
{
using (var game = new RhythmBulletGame())
game.Run();
}
}
}