19 lines
268 B
C#
19 lines
268 B
C#
|
|
using System;
|
||
|
|
using Robust.Shared.Serialization;
|
||
|
|
|
||
|
|
namespace Content.Shared.PDA
|
||
|
|
{
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public enum PDAVisuals
|
||
|
|
{
|
||
|
|
IDCardInserted
|
||
|
|
}
|
||
|
|
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public enum PDAUiKey
|
||
|
|
{
|
||
|
|
Key
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|