Files
crystall-punk-14/Content.Shared/GameObjects/Components/Items/IItemComponent.cs

10 lines
165 B
C#
Raw Normal View History

2020-07-08 18:28:59 +02:00
using Robust.Shared.Interfaces.GameObjects;
namespace Content.Shared.GameObjects.Components.Items
{
public interface IItemComponent : IComponent
{
}
}