mirror of
https://github.com/ficed/Braver.git
synced 2024-11-30 16:40:22 +00:00
11 lines
218 B
C#
11 lines
218 B
C#
using System;
|
|
|
|
namespace Braver {
|
|
public static class Program {
|
|
[STAThread]
|
|
static void Main() {
|
|
using (var game = new Game1())
|
|
game.Run();
|
|
}
|
|
}
|
|
} |