mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 15:08:46 +03:00
18 lines
474 B
C#
18 lines
474 B
C#
using Content.Shared.Whitelist;
|
|
|
|
namespace Content.Shared.Psionics;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class PsionicInvisibleContactsComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public EntityWhitelist Whitelist = default!;
|
|
|
|
/// <summary>
|
|
/// This tracks how many valid entities are being contacted,
|
|
/// so when you stop touching one, you don't immediately lose invisibility.
|
|
/// </summary>
|
|
[DataField]
|
|
public int Stages = 0;
|
|
}
|