Chain link fencing (#18956)

This commit is contained in:
Kara
2023-08-10 07:16:25 -07:00
committed by GitHub
parent c10b01c465
commit baddcf1b26
21 changed files with 587 additions and 4 deletions

View File

@@ -19,5 +19,17 @@ namespace Content.Shared.Climbing
/// </summary>
[DataField("delay")]
public float ClimbDelay = 0.8f;
/// <summary>
/// Sound to be played when a climb is started.
/// </summary>
[DataField("startClimbSound")]
public SoundSpecifier? StartClimbSound = null;
/// <summary>
/// Sound to be played when a climb finishes.
/// </summary>
[DataField("finishClimbSound")]
public SoundSpecifier? FinishClimbSound = null;
}
}