mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
12 lines
240 B
C#
12 lines
240 B
C#
namespace Content.Server._White.Blocking;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class RechargeableBlockingComponent : Component
|
|
{
|
|
[DataField]
|
|
public float RechargeDelay = 30f;
|
|
|
|
[ViewVariables]
|
|
public bool Discharged;
|
|
}
|