StrawberryBF/SampleGame/src/Level.bf

16 lines
323 B
Brainfuck
Raw Normal View History

2020-05-09 12:05:29 +08:00
namespace Strawberry.Sample
{
public class Level : Scene
{
public Grid SolidGrid { get; private set; }
2020-05-09 12:05:29 +08:00
public this()
{
Add(new Player(.(50, 50)));
Add(new OldSolid(.(0, 168), .(0, 0, 320, 12)));
Add(new OldJumpThru(.(200, 132), 48));
2020-05-09 12:05:29 +08:00
Add(new MovingJumpThru(.(136, 100), 32, .(124, 140), 2f));
}
}
}