mirror of
https://github.com/MaddyThorson/StrawberryBF.git
synced 2025-04-05 00:46:05 +08:00
43 lines
610 B
Brainfuck
43 lines
610 B
Brainfuck
using System.Collections;
|
|
|
|
namespace Strawberry
|
|
{
|
|
public class Solid : Geometry
|
|
{
|
|
public this(Point position, Rect hitbox)
|
|
: base(position)
|
|
{
|
|
Hitbox = hitbox;
|
|
}
|
|
|
|
public override List<Actor> GetRiders(List<Actor> into)
|
|
{
|
|
for (var a in Scene.All<Actor>(scope List<Actor>))
|
|
if (a.IsRiding(this))
|
|
into.Add(a);
|
|
return into;
|
|
}
|
|
|
|
public override void MoveExactX(int amount)
|
|
{
|
|
if (amount != 0)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
public override void MoveExactY(int amount)
|
|
{
|
|
if (amount != 0)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
public override void Draw()
|
|
{
|
|
DrawHitbox(.(255, 255, 255, 255));
|
|
}
|
|
}
|
|
}
|