Syndicate Reinforcement Specializations: Medic, Spy, Thief (#29853)
* Syndicate thief, spy, medic * Fixes description for nukies * update description for uplink * Implement the radial menu * forgot these were necessary to push lol --------- Co-authored-by: plykiya <plykiya@protonmail.com>
This commit is contained in:
21
Content.Shared/Ghost/GhostRoleRadioEvents.cs
Normal file
21
Content.Shared/Ghost/GhostRoleRadioEvents.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using Robust.Shared.Prototypes;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Ghost.Roles;
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class GhostRoleRadioMessage : BoundUserInterfaceMessage
|
||||
{
|
||||
public ProtoId<GhostRolePrototype> ProtoId;
|
||||
|
||||
public GhostRoleRadioMessage(ProtoId<GhostRolePrototype> protoId)
|
||||
{
|
||||
ProtoId = protoId;
|
||||
}
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum GhostRoleRadioUiKey : byte
|
||||
{
|
||||
Key
|
||||
}
|
||||
Reference in New Issue
Block a user