Files
tbd-station-14/Content.Shared/Window/SharedWindowComponent.cs
2021-06-09 22:19:39 +02:00

19 lines
345 B
C#

#nullable enable
using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
namespace Content.Shared.Window
{
public class SharedWindowComponent : Component
{
public override string Name => "Window";
}
[Serializable, NetSerializable]
public enum WindowVisuals
{
Damage
}
}