mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* Remove IoCManager.ResolveEnumerable, ContentLoader IContentLoader has been replaced with IReflectionManager. IoCManager.ResolveEnumerable<T> is now handled by IReflectionManager.GetAllChildren<T>. IoC now solely handles services. That was pretty bad API design on my part. * Make ClientComponent have [Reflect(false)] * Unit tests.
15 lines
339 B
C#
15 lines
339 B
C#
using SS14.Shared.GameObjects;
|
|
using SS14.Shared.IoC;
|
|
|
|
namespace SS14.Server.GameObjects
|
|
{
|
|
public class BasicInteractableComponent : Component
|
|
{
|
|
public override string Name => "BasicInteractable";
|
|
public BasicInteractableComponent()
|
|
{
|
|
Family = ComponentFamily.Interactable;
|
|
}
|
|
}
|
|
}
|