18 lines
328 B
C#
18 lines
328 B
C#
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
|
|
}
|
|
}
|