10 lines
165 B
C#
10 lines
165 B
C#
using Robust.Shared.Interfaces.GameObjects;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Items
|
|
{
|
|
public interface IItemComponent : IComponent
|
|
{
|
|
|
|
}
|
|
}
|