mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
18 lines
317 B
C#
18 lines
317 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Disposal.Components
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum DisposalTubeVisuals
|
|
{
|
|
VisualState
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum DisposalTubeVisualState
|
|
{
|
|
Free = 0,
|
|
Anchored,
|
|
}
|
|
}
|