StrawberryBF/SampleGame/src/SampleGame.bf

15 lines
203 B
Brainfuck
Raw Normal View History

2020-05-09 12:05:29 +08:00
using System;
namespace Strawberry.Sample
{
public class SampleGame : Game
{
public this()
: base("Strawberry Sample Game!", 320, 180, 3)
{
Controls.Init();
Scene = new Level();
}
}
}