16 lines
276 B
C#
16 lines
276 B
C#
|
using Godot;
|
||
|
using System.Reflection;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public class NoteEvent
|
||
|
{
|
||
|
public int id;
|
||
|
public float pitch;
|
||
|
public float volume;
|
||
|
public float startPosition;
|
||
|
public float duration;
|
||
|
}
|
||
|
}
|