mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|