Created
February 9, 2015 01:25
-
-
Save julapy/34e251b8e94ce199cde0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "ofApp.h" | |
//-------------------------------------------------------------- | |
void ofApp::setup(){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::update(){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::draw(){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::keyPressed (int key){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::keyReleased(int key){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::windowResized(int w, int h){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::touchDown(int x, int y, int id){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::touchMoved(int x, int y, int id){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::touchUp(int x, int y, int id){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::touchDoubleTap(int x, int y, int id){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::touchCancelled(int x, int y, int id){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::swipe(ofxAndroidSwipeDir swipeDir, int id){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::pause(){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::stop(){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::resume(){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::reloadTextures(){ | |
} | |
//-------------------------------------------------------------- | |
bool ofApp::backPressed(){ | |
return false; | |
} | |
//-------------------------------------------------------------- | |
void ofApp::okPressed(){ | |
} | |
//-------------------------------------------------------------- | |
void ofApp::cancelPressed(){ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment