Files
wylab-station-14/Content.Shared/zlevels/ThirdDimension/ZViewComponent.cs
Moony a9f7ea5185 Adds Z Levels to the game (#15009)
* 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>
2023-03-31 14:41:38 -05:00

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;
}
}