StrawberryBF/SampleGame/src/physics/JumpThru.bf

15 lines
215 B
Brainfuck
Raw Normal View History

2020-05-06 09:51:27 +08:00
using System.Collections;
namespace Strawberry.Sample
2020-05-06 09:51:27 +08:00
{
public class JumpThru : Component, IHasHitbox
2020-05-06 09:51:27 +08:00
{
public Hitbox Hitbox { get; private set; }
2020-05-06 09:51:27 +08:00
public this(Hitbox hitbox)
2020-05-06 09:51:27 +08:00
{
Hitbox = hitbox;
2020-05-06 09:51:27 +08:00
}
}
}