#include "testApp.h"
#include "stdio.h"

bool locked = false;

//--------------------------------------------------------------
void testApp::setup(){	 
	T1.startThread(false, true);
}

//--------------------------------------------------------------
void testApp::update(){	
	ofBackground(255,255,255);

}

//--------------------------------------------------------------
void testApp::draw(){
	ofSetColor(0x000000);
	T1.drawCount();
}

//--------------------------------------------------------------
void testApp::keyPressed  (int key){ 
}

//--------------------------------------------------------------
void testApp::mouseMoved(int x, int y ){
}

//--------------------------------------------------------------
void testApp::mouseDragged(int x, int y, int button){
	
}

//--------------------------------------------------------------
void testApp::mousePressed(int x, int y, int button){
	
}

//--------------------------------------------------------------
void testApp::mouseReleased(){
}
