26 lines
584 B
C#
26 lines
584 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._White.Cult.UI;
|
|
|
|
[Serializable, NetSerializable]
|
|
public class CultistFactoryBUIState : BoundUserInterfaceState
|
|
{
|
|
public IReadOnlyCollection<string> Ids { get; set; }
|
|
|
|
public CultistFactoryBUIState(IReadOnlyCollection<string> ids)
|
|
{
|
|
Ids = ids;
|
|
}
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public class CultistFactoryItemSelectedMessage : BoundUserInterfaceMessage
|
|
{
|
|
public string Item { get; private set; }
|
|
|
|
public CultistFactoryItemSelectedMessage(string item)
|
|
{
|
|
Item = item;
|
|
}
|
|
}
|