mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
19 lines
447 B
C#
19 lines
447 B
C#
using System.Collections.Immutable;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.CartridgeLoader;
|
|
|
|
[Virtual]
|
|
[Serializable, NetSerializable]
|
|
public class CartridgeLoaderUiState : BoundUserInterfaceState
|
|
{
|
|
public NetEntity? ActiveUI;
|
|
public List<NetEntity> Programs;
|
|
|
|
public CartridgeLoaderUiState(List<NetEntity> programs, NetEntity? activeUI)
|
|
{
|
|
Programs = programs;
|
|
ActiveUI = activeUI;
|
|
}
|
|
}
|