mirror of
https://github.com/MaddyThorson/StrawberryBF.git
synced 2025-02-19 11:48:58 +08:00
16 lines
323 B
Brainfuck
16 lines
323 B
Brainfuck
namespace Strawberry.Sample
|
|
{
|
|
public class Level : Scene
|
|
{
|
|
public Grid SolidGrid { get; private set; }
|
|
|
|
public this()
|
|
{
|
|
Add(new Player(.(50, 50)));
|
|
Add(new OldSolid(.(0, 168), .(0, 0, 320, 12)));
|
|
Add(new OldJumpThru(.(200, 132), 48));
|
|
Add(new MovingJumpThru(.(136, 100), 32, .(124, 140), 2f));
|
|
}
|
|
}
|
|
}
|