mirror of
https://github.com/MaddyThorson/StrawberryBF.git
synced 2025-04-04 00:26:04 +08:00
15 lines
215 B
Brainfuck
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;
|
|
}
|
|
}
|
|
}
|