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

11 lines
171 B
C#
Raw Normal View History

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