mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 06:28:40 +03:00
25 lines
390 B
C#
25 lines
390 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Doors
|
|
{
|
|
[NetSerializable]
|
|
[Serializable]
|
|
public enum DoorVisuals
|
|
{
|
|
VisualState,
|
|
Powered
|
|
}
|
|
|
|
[NetSerializable]
|
|
[Serializable]
|
|
public enum DoorVisualState
|
|
{
|
|
Closed,
|
|
Opening,
|
|
Open,
|
|
Closing,
|
|
Deny,
|
|
}
|
|
}
|