2021-06-09 22:19:39 +02:00
|
|
|
using Content.Shared.Item;
|
2019-04-15 21:11:38 -06:00
|
|
|
using Robust.Shared.GameObjects;
|
2021-12-03 14:17:01 +01:00
|
|
|
using Robust.Shared.IoC;
|
2018-09-19 18:54:04 +02:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Client.Items.Components
|
2018-09-19 18:54:04 +02:00
|
|
|
{
|
2019-07-31 15:02:36 +02:00
|
|
|
[RegisterComponent]
|
2021-04-02 04:01:03 -06:00
|
|
|
[ComponentReference(typeof(SharedItemComponent))]
|
2022-02-16 00:23:23 -07:00
|
|
|
[Virtual]
|
2022-01-05 17:53:08 +13:00
|
|
|
public class ItemComponent : SharedItemComponent { }
|
2018-09-19 18:54:04 +02:00
|
|
|
}
|