mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-02-10 01:53:14 +01:00
16 lines
240 B
C#
16 lines
240 B
C#
using System;
|
|
using {{.Namespace}}.AutoGen;
|
|
|
|
namespace {{.Namespace}}
|
|
{
|
|
public static class Program
|
|
{
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Go go = new Go();
|
|
go.Run();
|
|
}
|
|
}
|
|
}
|