Files
OldThink/Content.Shared/_White/Item/PseudoItem/PseudoItemComponent.cs
Aviu00 58574b8a70 Felinids fit in duffelbags. (#515)
* - add: Felinids fit in duffelbags.

* - add: This is better.

* - add: Move to shared.
2024-07-30 19:32:26 +03:00

23 lines
605 B
C#

using Content.Shared.Item;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared._White.Item.PseudoItem;
/// <summary>
/// For entities that behave like an item under certain conditions,
/// but not under most conditions.
/// </summary>
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class PseudoItemComponent : Component
{
[DataField]
public ProtoId<ItemSizePrototype> Size = "Huge";
[DataField]
public List<Box2i>? Shape = new() {new Box2i(0, 0, 4, 4)};
[AutoNetworkedField]
public bool Active;
}