Files
OldThink/Content.Server/GameObjects/Components/WindowComponent.cs

12 lines
283 B
C#
Raw Normal View History

using Content.Shared.GameObjects.Components;
using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components
{
[RegisterComponent]
[ComponentReference(typeof(SharedWindowComponent))]
public class WindowComponent : SharedWindowComponent
{
}
}