2024-01-28 18:18:54 +07:00
|
|
|
namespace Content.Server._White.Cult.Runes.Comps;
|
2024-01-27 15:19:52 +03:00
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public sealed partial class CultTeleportRuneProviderComponent : Component
|
|
|
|
|
{
|
|
|
|
|
[ViewVariables(VVAccess.ReadOnly)]
|
|
|
|
|
public EntityUid? BaseRune;
|
|
|
|
|
|
|
|
|
|
[ViewVariables(VVAccess.ReadOnly)]
|
|
|
|
|
public List<EntityUid>? Targets;
|
|
|
|
|
}
|