mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 03:35:10 +00:00
14 lines
264 B
C#
14 lines
264 B
C#
|
public struct NoteSample
|
|||
|
{
|
|||
|
public int note;
|
|||
|
public int octave;
|
|||
|
public string sample;
|
|||
|
|
|||
|
public NoteSample(string sample, int note, int octave)
|
|||
|
{
|
|||
|
this.note = note;
|
|||
|
this.octave = octave;
|
|||
|
this.sample = sample;
|
|||
|
}
|
|||
|
}
|