forked from space-syndicate/space-station-14
* save work * Adds Z levels * a * ladders + parallax scroll * zoom out not in * oops, sandbox * oops i broke the law * run ci --------- Co-authored-by: moonheart08 <moonheart08@users.noreply.github.com>
26 lines
584 B
C#
26 lines
584 B
C#
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._Afterlight.ThirdDimension;
|
|
|
|
/// <summary>
|
|
/// This is used for...
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed class ZViewComponent : Component
|
|
{
|
|
[ViewVariables]
|
|
public List<EntityUid> DownViewEnts = new();
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class ZViewComponentState : ComponentState
|
|
{
|
|
public List<EntityUid> DownViewEnts;
|
|
|
|
public ZViewComponentState(List<EntityUid> downViewEnts)
|
|
{
|
|
DownViewEnts = downViewEnts;
|
|
}
|
|
}
|