2024-01-27 15:19:52 +03:00
|
|
|
|
using Content.Server.UserInterface;
|
2024-01-28 18:37:24 +07:00
|
|
|
|
using Content.Shared._White.Cult.UI;
|
2024-01-27 15:19:52 +03:00
|
|
|
|
using Robust.Server.GameObjects;
|
2024-03-22 17:23:33 +09:00
|
|
|
|
using Robust.Shared.Prototypes;
|
2024-01-27 15:19:52 +03:00
|
|
|
|
|
2024-01-28 18:37:24 +07:00
|
|
|
|
namespace Content.Shared._White.Cult;
|
2024-01-27 15:19:52 +03:00
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
public sealed partial class RuneDrawerProviderComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
[ViewVariables]
|
2023-11-15 23:31:43 +03:00
|
|
|
|
public Enum UserInterfaceKey = ListViewSelectorUiKey.Key;
|
2024-01-27 15:19:52 +03:00
|
|
|
|
|
|
|
|
|
|
[DataField("runePrototypes")]
|
2024-03-22 17:23:33 +09:00
|
|
|
|
public List<EntProtoId> RunePrototypes = new();
|
2024-01-27 15:19:52 +03:00
|
|
|
|
}
|