StrawberryBF/src/Physics/Solid.bf

43 lines
604 B
Brainfuck
Raw Normal View History

2020-05-05 11:50:38 +08:00
using System.Collections;
namespace Strawberry
{
2020-05-06 08:43:33 +08:00
public class Solid : Geometry
2020-05-05 11:50:38 +08:00
{
public this(int x, int y, Rect hitbox)
: base(x, y)
{
Hitbox = hitbox;
}
public override void Draw()
{
DrawHitbox(.(255, 255, 255, 255));
}
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;
}
2020-05-06 08:43:33 +08:00
public override void MoveExactX(int amount)
2020-05-05 11:50:38 +08:00
{
if (amount != 0)
{
}
}
2020-05-06 08:43:33 +08:00
public override void MoveExactY(int amount)
2020-05-05 11:50:38 +08:00
{
if (amount != 0)
{
}
}
}
}