Adding sounds to stamps (#17834)

* Add sounds

* FixSound

* Delete sound

* hmmmmmm
This commit is contained in:
Alex
2023-07-07 05:53:38 +03:00
committed by GitHub
parent 70d6e3dcbd
commit 68bd6f63d1
6 changed files with 20 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
using Robust.Shared.Audio;
namespace Content.Shared.Paper
{
[RegisterComponent]
@@ -13,5 +15,8 @@ namespace Content.Shared.Paper
/// </summary>
[DataField("stampState")]
public string StampState { get; set; } = "paper_stamp-generic";
[DataField("sound")]
public SoundSpecifier? Sound;
}
}