committed by
GitHub
parent
ea60a81fdf
commit
103bc19508
22
Content.Shared/Wires/SharedWireVisComponent.cs
Normal file
22
Content.Shared/Wires/SharedWireVisComponent.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Wires
|
||||
{
|
||||
[Serializable, NetSerializable]
|
||||
public enum WireVisVisuals
|
||||
{
|
||||
ConnectedMask
|
||||
}
|
||||
|
||||
[Flags]
|
||||
[Serializable, NetSerializable]
|
||||
public enum WireVisDirFlags : byte
|
||||
{
|
||||
None = 0,
|
||||
North = 1,
|
||||
South = 2,
|
||||
East = 4,
|
||||
West = 8
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user