* Enable nullability in Content.Client * Remove #nullable enable * Merge fixes * Remove Debug.Assert * Merge fixes * Fix build * Fix build
11 lines
359 B
C#
11 lines
359 B
C#
using Content.Shared.GameObjects.Components.Body.Mechanism;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.GameObjects.Components.Body.Mechanism
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedMechanismComponent))]
|
|
[ComponentReference(typeof(IMechanism))]
|
|
public class MechanismComponent : SharedMechanismComponent { }
|
|
}
|