添加对 Core 的直接引用

This commit is contained in:
OLDREDSTONE
2025-03-25 15:49:57 +08:00
parent 24907abedb
commit 06c19bf10a
296 changed files with 24961 additions and 2 deletions
+53
View File
@@ -0,0 +1,53 @@
namespace RhythmBase.Events
{
/// <summary>
/// Enum representing default audio events in the RhythmBase application.
/// </summary>
public enum DefaultAudios
{
/// <summary>
/// Base sound for the tutorial house.
/// </summary>
sndTutorialHouse_Base,
/// <summary>
/// Rest sound for the tutorial house.
/// </summary>
sndTutorialHouse_Rest,
/// <summary>
/// Amen fill sound for the tutorial house.
/// </summary>
sndTutorialHouse_AmenFill,
/// <summary>
/// First freeze sound for the tutorial house.
/// </summary>
sndTutorialHouse_Freeze1,
/// <summary>
/// Second freeze sound for the tutorial house.
/// </summary>
sndTutorialHouse_Freeze2,
/// <summary>
/// CPU freeze sound for the tutorial house.
/// </summary>
sndTutorialHouse_FreezeCPU,
/// <summary>
/// First burn sound for the tutorial house.
/// </summary>
sndTutorialHouse_Burn1,
/// <summary>
/// Second burn sound for the tutorial house.
/// </summary>
sndTutorialHouse_Burn2,
/// <summary>
/// CPU burn sound for the tutorial house.
/// </summary>
sndTutorialHouse_BurnCPU
}
}