Files
crystall-punk-14/Content.Client/Ghost/GhostComponent.cs

12 lines
262 B
C#
Raw Normal View History

2021-06-09 22:19:39 +02:00
using Content.Shared.Ghost;
2021-06-09 22:19:39 +02:00
namespace Content.Client.Ghost
{
[RegisterComponent]
2021-10-24 15:29:38 +13:00
[ComponentReference(typeof(SharedGhostComponent))]
public sealed class GhostComponent : SharedGhostComponent
{
public bool IsAttached { get; set; }
}
}