* fixed prediction (hopefully), removed caching of prototype, sealed the class, removed any and count * erroneus using statement * removed unused timing, removed obsolete method of getting gridUid * nuked mapgriddata * code cleanup * cleanup * this has to be a string without me rewriting more code than i want to in this moment * kill --------- Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
24 lines
613 B
C#
24 lines
613 B
C#
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.RCD;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class RCDSystemMessage(ProtoId<RCDPrototype> protoId) : BoundUserInterfaceMessage
|
|
{
|
|
public ProtoId<RCDPrototype> ProtoId = protoId;
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class RCDConstructionGhostRotationEvent(NetEntity netEntity, Direction direction) : EntityEventArgs
|
|
{
|
|
public readonly NetEntity NetEntity = netEntity;
|
|
public readonly Direction Direction = direction;
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum RcdUiKey : byte
|
|
{
|
|
Key
|
|
}
|