19 lines
405 B
C#
19 lines
405 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.PDA.Ringer
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public sealed class RingerUpdateState : BoundUserInterfaceState
|
|
{
|
|
public bool IsPlaying;
|
|
public Note[] Ringtone;
|
|
|
|
public RingerUpdateState(bool isPlay, Note[] ringtone)
|
|
{
|
|
IsPlaying = isPlay;
|
|
Ringtone = ringtone;
|
|
}
|
|
}
|
|
|
|
}
|