mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 23:17:43 +03:00
* add: crossbar * add: crossbar * add: crossbow * clean up * AI rewie * fix * fix * fix :( * Update tags.yml * fix
17 lines
336 B
C#
17 lines
336 B
C#
using Content.Shared.Damage;
|
|
|
|
namespace Content.Shared._White.Projectile;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class PenetratedProjectileComponent : Component
|
|
{
|
|
[DataField]
|
|
public float MinimumSpeed = 40f;
|
|
|
|
[DataField]
|
|
public DamageSpecifier Damage = new();
|
|
|
|
[DataField]
|
|
public EntityUid? PenetratedUid;
|
|
}
|