|
using Godot;
|
|
using System.Reflection;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
using Rokojori.Extensions;
|
|
namespace Rokojori
|
|
{
|
|
public class NoteEvent
|
|
{
|
|
public int id;
|
|
public float pitch;
|
|
public float volume;
|
|
public float startPosition;
|
|
public float duration;
|
|
}
|
|
} |