2021-07-25 20:09:08 +10:00
|
|
|
namespace Content.Server.Explosion.Components
|
|
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class TriggerOnCollideComponent : Component
|
2021-07-25 20:09:08 +10:00
|
|
|
{
|
2022-05-26 21:18:57 -04:00
|
|
|
[DataField("fixtureID", required: true)]
|
|
|
|
|
public string FixtureID = String.Empty;
|
2021-07-25 20:09:08 +10:00
|
|
|
}
|
|
|
|
|
}
|