2021-07-31 12:41:59 +02:00
|
|
|
using Content.Shared.Kitchen.Components;
|
|
|
|
|
using Content.Shared.Sound;
|
|
|
|
|
using Robust.Shared.Audio;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Kitchen.Components
|
|
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class MicrowaveComponent : SharedMicrowaveComponent
|
2021-07-31 12:41:59 +02:00
|
|
|
{
|
|
|
|
|
public IPlayingAudioStream? PlayingStream { get; set; }
|
|
|
|
|
|
|
|
|
|
[DataField("loopingSound")]
|
|
|
|
|
public SoundSpecifier LoopingSound = new SoundPathSpecifier("/Audio/Machines/microwave_loop.ogg");
|
|
|
|
|
}
|
|
|
|
|
}
|