1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 23:27:24 +08:00
osu-lazer/osu.Game/Beatmaps/ControlPoints/SoundControlPoint.cs

18 lines
553 B
C#
Raw Normal View History

2017-05-23 13:11:37 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Beatmaps.ControlPoints
{
public class SoundControlPoint : ControlPoint
{
2017-05-23 13:11:37 +08:00
/// <summary>
/// The default sample bank at this control point.
/// </summary>
public string SampleBank;
2017-05-23 13:11:37 +08:00
/// <summary>
/// The default sample volume at this control point.
/// </summary>
public int SampleVolume;
}
}