Files
OldThink/Content.Server/_White/Cult/Runes/Comps/RuneDrawerProviderComponent.cs

17 lines
442 B
C#
Raw Permalink Normal View History

2024-01-27 15:19:52 +03:00
using Content.Server.UserInterface;
using Content.Shared._White.Cult.UI;
2024-01-27 15:19:52 +03:00
using Robust.Server.GameObjects;
using Robust.Shared.Prototypes;
2024-01-27 15:19:52 +03: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")]
public List<EntProtoId> RunePrototypes = new();
2024-01-27 15:19:52 +03:00
}