* V1 commit * Remove PDA name and unnecessary pda state * Adds PDA to Chameleon backpack & thief toolbox * Change to use AppearanceDataInit * Add basic PDA state to ensure there's always a sprite before AppearanceData can be applied * Revert PDA name (this will be changed to another way later) * Update PDA name updating to new system * Fix yaml, and fix Agent ID chameleon * Updated based on review
19 lines
271 B
C#
19 lines
271 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.PDA
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum PdaVisuals
|
|
{
|
|
IdCardInserted,
|
|
PdaType
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum PdaUiKey
|
|
{
|
|
Key
|
|
}
|
|
|
|
}
|