StrawberryBF/SampleGame/src/SampleGame.bf
2020-05-08 21:05:29 -07:00

15 lines
203 B
Brainfuck

using System;
namespace Strawberry.Sample
{
public class SampleGame : Game
{
public this()
: base("Strawberry Sample Game!", 320, 180, 3)
{
Controls.Init();
Scene = new Level();
}
}
}