summaryrefslogtreecommitdiffstats
path: root/EventHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'EventHandler.h')
-rw-r--r--EventHandler.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/EventHandler.h b/EventHandler.h
deleted file mode 100644
index 7676de1..0000000
--- a/EventHandler.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef EVENTHANDLER_H_
-#define EVENTHANDLER_H_
-
-#include "Vertex.h"
-
-
-class EventHandler {
- public:
- virtual ~EventHandler() {}
-
- virtual bool buttonPress(unsigned int button, const Vertex *v) {return false;}
- virtual bool buttonRelease(unsigned int button, const Vertex *v) {return false;}
- virtual bool motion(const Vertex *v) {return false;}
- virtual bool motion(const Vertex *v, float scale) {return motion(v);}
-};
-
-#endif /*EVENTHANDLER_H_*/