mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 06:28:40 +03:00
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
|
|
}
|
|
}
|