* Initial commit * removed jumpsuit slot component, system * sprite fixes * Локализация для телевизора и роутера * Removed separate router and tv for body cameras. Now they're public. Added localizations. * +cargo buying, sprites finale
11 lines
273 B
C#
11 lines
273 B
C#
namespace Content.Server.SurveillanceCamera;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class SurveillanceBodyCameraComponent : Component
|
|
{
|
|
[DataField("wattage"), ViewVariables(VVAccess.ReadWrite)]
|
|
public float Wattage = 0.3f;
|
|
|
|
public bool lastState = false;
|
|
}
|