Files
OldThink/Content.Shared/GameObjects/Components/SharedWindowComponent.cs

18 lines
344 B
C#
Raw Normal View History

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