Files
StrawberryBF/SampleGame/src/physics/Solid.bf

15 lines
212 B
Beef
Raw Normal View History

2020-05-04 20:50:38 -07:00
using System.Collections;
namespace Strawberry.Sample
2020-05-04 20:50:38 -07:00
{
public class Solid : Component, IHasHitbox
2020-05-04 20:50:38 -07:00
{
public Hitbox Hitbox { get; private set; }
2020-05-04 20:50:38 -07:00
public this(Hitbox hitbox)
2020-05-04 20:50:38 -07:00
{
Hitbox = hitbox;
2020-05-05 18:51:27 -07:00
}
2020-05-04 20:50:38 -07:00
}
}