2022-11-08 21:00:20 +01:00
|
|
|
|
using System.Collections.Immutable;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.CartridgeLoader;
|
|
|
|
|
|
|
|
|
|
|
|
[Virtual]
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public class CartridgeLoaderUiState : BoundUserInterfaceState
|
|
|
|
|
|
{
|
2023-09-11 09:42:41 +10:00
|
|
|
|
public NetEntity? ActiveUI;
|
|
|
|
|
|
public List<NetEntity> Programs;
|
|
|
|
|
|
|
|
|
|
|
|
public CartridgeLoaderUiState(List<NetEntity> programs, NetEntity? activeUI)
|
|
|
|
|
|
{
|
|
|
|
|
|
Programs = programs;
|
|
|
|
|
|
ActiveUI = activeUI;
|
|
|
|
|
|
}
|
2022-11-08 21:00:20 +01:00
|
|
|
|
}
|