view Voice.h @ 1:3b6ab3b28808

Add command line params for disabling keys
author Henrik Ekeus <hekeus@eecs.qmul.ac.uk>
date Tue, 24 Jan 2012 13:48:54 +0000
parents 2db9be889344
children
line wrap: on
line source
/*
 *  Voice.h
 *  MelodyTriangle
 *
 *  Created by Henrik Ekeus on 12/01/2012.
 *  Copyright 2012 Queen Mary University of London. All rights reserved.
 *
 */
#include "ofMain.h"
class Voice  {
public:
	
	void draw();
	Voice(int id, int x, int y);
	Voice();
	bool isInVoice(int x, int y);
	
	int id;
	int posx,posy;
	bool isActive;
	bool inTriangle;
	int radius;
	int octave;
	bool highlight;
	
	
};