| 12345678910111213141516171819202122232425262728293031323334 |
- using Robust.Shared.Prototypes;
- using Robust.Shared.Serialization;
- namespace Content.Shared.RCD;
- [Serializable, NetSerializable]
- public sealed class RCDSystemMessage : BoundUserInterfaceMessage
- {
- public ProtoId<RCDPrototype> ProtoId;
- public RCDSystemMessage(ProtoId<RCDPrototype> protoId)
- {
- ProtoId = protoId;
- }
- }
- [Serializable, NetSerializable]
- public sealed class RCDConstructionGhostRotationEvent : EntityEventArgs
- {
- public readonly NetEntity NetEntity;
- public readonly Direction Direction;
- public RCDConstructionGhostRotationEvent(NetEntity netEntity, Direction direction)
- {
- NetEntity = netEntity;
- Direction = direction;
- }
- }
- [Serializable, NetSerializable]
- public enum RcdUiKey : byte
- {
- Key
- }
|