2023-01-03 17:13:10 -06:00
|
|
|
|
using Content.Shared.Actions;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
2022-01-22 15:55:11 +03:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Xenoarchaeology.XenoArtifacts;
|
|
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public enum SharedArtifactsVisuals : byte
|
|
|
|
|
|
{
|
|
|
|
|
|
SpriteIndex,
|
|
|
|
|
|
IsActivated
|
|
|
|
|
|
}
|
2023-01-03 17:13:10 -06:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Raised as an instant action event when a sentient artifact activates itself using an action.
|
|
|
|
|
|
/// </summary>
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class ArtifactSelfActivateEvent : InstantActionEvent
|
2023-01-03 17:13:10 -06:00
|
|
|
|
{
|
|
|
|
|
|
}
|