10 lines
228 B
C#
10 lines
228 B
C#
namespace Content.Server.Explosion.Components;
|
|
|
|
/// <summary>
|
|
/// Triggers a gun when attempting to shoot while it's empty
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class TriggerWhenEmptyComponent : Component
|
|
{
|
|
}
|