mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* implement * react to revenants/AI eye * rare maints loot * sprite * description * review Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * do changes * stats * networked --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> (cherry picked from commit fca95ef250c3ffbbf139d732df3c4e104efa6801)
10 lines
250 B
C#
10 lines
250 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Ghost;
|
|
|
|
/// <summary>
|
|
/// Marker component to identify "ghostly" entities.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class SpectralComponent : Component { }
|