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