1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2024-12-02 19:17:16 +01:00
VoxCharger/Sources/Ksh/KshSoundEffect.cs
2020-04-19 03:24:48 +07:00

20 lines
491 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VoxCharger
{
public partial class Ksh
{
public class KshSoundEffect
{
public Event.ButtonTrack Track { get; set; }
public Event.ChipFx Effect { get; set; } = Event.ChipFx.None;
public int HitCount { get; set; }
public int Used { get; set; }
}
}
}