Files
wwdpublic/Content.Shared/PDA/PdaVisuals.cs
Myaflic e83ca26ba9 PDA animations! (#938)
* Create test Animated PDA

* Add animation sprites for almost all PDAs (Only in "_White" folder; Except "LOH" folder)

* Resolve conversations

* Remove test PDA (AnimatedPDA)

* Fix bug

* Maybee fix tests??...

* Review changes

* Test fix

* Fix for Rabbit

* blya

* tweak

* crolik umni

* crolik umniy dva

---------

Co-authored-by: Spatison <137375981+Spatison@users.noreply.github.com>
2026-01-18 18:22:46 +03:00

37 lines
582 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.PDA
{
[Serializable, NetSerializable]
public enum PdaVisuals
{
IdCardInserted,
State // WD EDIT
}
[Serializable, NetSerializable]
public enum PdaUiKey
{
Key
}
// WD EDIT START
[Serializable, NetSerializable]
public enum PdaState : byte
{
Closed,
Closing,
Open,
Opening
}
public enum PdaVisualLayers : byte
{
Flashlight,
IdLight,
Screen,
State
}
// WD EDIT END
}