19 lines
447 B
C#
19 lines
447 B
C#
using Content.Shared.Actions;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Xenoarchaeology.XenoArtifacts;
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum SharedArtifactsVisuals : byte
|
|
{
|
|
SpriteIndex,
|
|
IsActivated
|
|
}
|
|
|
|
/// <summary>
|
|
/// Raised as an instant action event when a sentient artifact activates itself using an action.
|
|
/// </summary>
|
|
public sealed partial class ArtifactSelfActivateEvent : InstantActionEvent
|
|
{
|
|
}
|