#ifndef __NOTENODE_H__
#define __NOTENODE_H__

typedef struct node noteNode;

struct node {
  int scaleIndex;
  double duration;
  noteNode* next;
};

#endif
