mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-13 06:27:28 +01:00
d8b34b136a
Fixes #1144
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();
|
|
}
|
|
}
|
|
}
|