2020-05-04 20:50:38 -07:00
|
|
|
using System.Collections;
|
|
|
|
|
|
2020-09-12 23:52:13 -07:00
|
|
|
namespace Strawberry.Sample
|
2020-05-04 20:50:38 -07:00
|
|
|
{
|
2021-02-04 23:11:51 -08:00
|
|
|
public class Solid : Component, IHasHitbox
|
2020-05-04 20:50:38 -07:00
|
|
|
{
|
2021-02-04 23:11:51 -08:00
|
|
|
public Hitbox Hitbox { get; private set; }
|
|
|
|
|
|
|
|
|
|
public this(Hitbox hitbox)
|
2020-05-04 20:50:38 -07:00
|
|
|
{
|
|
|
|
|
Hitbox = hitbox;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|