mirror of
https://github.com/MaddyThorson/StrawberryBF.git
synced 2025-02-12 10:28:27 +08:00
15 lines
203 B
Brainfuck
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();
|
|
}
|
|
}
|
|
}
|