Fixing CREDITS file

Removing many of clang warnings
This commit is contained in:
Alexander Bock
2015-05-13 19:33:34 +02:00
parent 28abe46bcf
commit 597ed14014
29 changed files with 59 additions and 67 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ public:
Controller() :
_handler(nullptr)
{}
void setHandler(InteractionHandler* handler);
protected:
@@ -34,6 +34,7 @@ namespace interaction {
class KeyboardController : public Controller {
public:
virtual ~KeyboardController() {};
virtual void keyPressed(KeyAction action, Key key, KeyModifier modifier) = 0;
};
@@ -37,6 +37,7 @@ namespace interaction {
class MouseController : public Controller {
public:
MouseController();
virtual ~MouseController() {}
virtual void button(MouseAction action, MouseButton button) = 0;
virtual void move(float x, float y) = 0;