-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathofApp.h
33 lines (27 loc) · 931 Bytes
/
ofApp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#pragma once
#include "ofMain.h"
class ofApp : public ofBaseApp
{
public:
void setup ();
void update ();
void draw ();
void exit ();
void keyPressed (ofKeyEventArgs&);
void keyReleased (ofKeyEventArgs&);
void mouseMoved (ofMouseEventArgs&);
void mouseDragged (ofMouseEventArgs&);
void mousePressed (ofMouseEventArgs&);
void mouseReleased (ofMouseEventArgs&);
void mouseScrolled (ofMouseEventArgs&);
void mouseEntered (ofMouseEventArgs&);
void mouseExited (ofMouseEventArgs&);
void touchDown (ofTouchEventArgs&);
void touchMoved (ofTouchEventArgs&);
void touchUp (ofTouchEventArgs&);
void touchDoubleTap (ofTouchEventArgs&);
void touchCancelled (ofTouchEventArgs&);
void windowResized (ofResizeEventArgs&);
void dragged (ofDragInfo&);
void messageReceived (ofMessage&);
};