18 lines
275 B
C#
18 lines
275 B
C#
|
|
using Robust.Shared.Serialization;
|
||
|
|
|
||
|
|
namespace Content.Shared.Fax;
|
||
|
|
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public enum FaxMachineVisuals : byte
|
||
|
|
{
|
||
|
|
VisualState,
|
||
|
|
}
|
||
|
|
|
||
|
|
[Serializable, NetSerializable]
|
||
|
|
public enum FaxMachineVisualState : byte
|
||
|
|
{
|
||
|
|
Normal,
|
||
|
|
Inserting,
|
||
|
|
Printing
|
||
|
|
}
|