This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RDTKEditor/RhythmBaseCore/Adofai/Events/ADPlaySound.cs
T

18 lines
305 B
C#

using System;
namespace RhythmBase.Adofai.Events
{
public class ADPlaySound : ADBaseTaggedTileAction
{
public ADPlaySound()
{
Type = ADEventType.PlaySound;
}
public override ADEventType Type { get; }
public string Hitsound { get; set; }
public int HitsoundVolume { get; set; }
}
}