HeavenStudio/Assets/Scripts/NoteSample.cs
EpicGamer2469 af217a23e9
Updates to note paramaters + some additional sound fixes (for r2) (#834)
* Note param stuff + some other fixes

* Stuff just for r2
2024-04-08 02:18:51 +00:00

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;
}
}