mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
26 lines
654 B
C#
26 lines
654 B
C#
using System;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Robust.Shared.GameObjects
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public class PointLightComponentState : ComponentState
|
|
{
|
|
public readonly Color Color;
|
|
public readonly bool Enabled;
|
|
|
|
public readonly float Radius;
|
|
public readonly Vector2 Offset;
|
|
|
|
public PointLightComponentState(bool enabled, Color color, float radius, Vector2 offset)
|
|
: base(NetIDs.POINT_LIGHT)
|
|
{
|
|
Enabled = enabled;
|
|
Color = color;
|
|
Radius = radius;
|
|
Offset = offset;
|
|
}
|
|
}
|
|
}
|