StrawberryBF/SampleGame/src/physics/JumpThru.bf
2021-02-04 23:11:51 -08:00

15 lines
215 B
Brainfuck

using System.Collections;
namespace Strawberry.Sample
{
public class JumpThru : Component, IHasHitbox
{
public Hitbox Hitbox { get; private set; }
public this(Hitbox hitbox)
{
Hitbox = hitbox;
}
}
}