mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 03:35:10 +00:00
bef6fb2bbb
* Note param stuff + some other fixes * Stuff just for r2
13 lines
264 B
C#
13 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;
|
|
}
|
|
}
|