Videoverarbeitung eines Beerpongspiels. Entstehung im Rahmen einer Praktikumsaufgabe im Fach "Interaktion".
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ofApp.h 543B

123456789101112131415161718192021222324
  1. #pragma once
  2. #include "ofMain.h"
  3. class ofApp : public ofBaseApp{
  4. public:
  5. void setup();
  6. void update();
  7. void draw();
  8. void keyPressed(int key);
  9. void keyReleased(int key);
  10. void mouseMoved(int x, int y );
  11. void mouseDragged(int x, int y, int button);
  12. void mousePressed(int x, int y, int button);
  13. void mouseReleased(int x, int y, int button);
  14. void mouseEntered(int x, int y);
  15. void mouseExited(int x, int y);
  16. void windowResized(int w, int h);
  17. void dragEvent(ofDragInfo dragInfo);
  18. void gotMessage(ofMessage msg);
  19. };