2024-01-27 15:19:52 +03:00
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
2024-01-28 18:37:24 +07:00
|
|
|
|
namespace Content.Shared._White.Cult;
|
2024-01-27 15:19:52 +03:00
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public enum NarsieVisualState : byte
|
|
|
|
|
|
{
|
|
|
|
|
|
VisualState
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public enum NarsieVisuals : byte
|
|
|
|
|
|
{
|
|
|
|
|
|
Spawning,
|
|
|
|
|
|
Spawned
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
|
|
|
|
public partial class NarsieComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|