mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
13 lines
379 B
C#
13 lines
379 B
C#
using Content.Shared.SurveillanceCamera;
|
|
|
|
namespace Content.Client.SurveillanceCamera;
|
|
|
|
// Dummy component so that targetted events work on client for
|
|
// appearance events.
|
|
[RegisterComponent]
|
|
public sealed partial class SurveillanceCameraVisualsComponent : Component
|
|
{
|
|
[DataField("sprites")]
|
|
public Dictionary<SurveillanceCameraVisuals, string> CameraSprites = new();
|
|
}
|