aboutsummaryrefslogtreecommitdiff
path: root/game/MoveCameraManualyScript.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/MoveCameraManualyScript.cpp')
-rw-r--r--game/MoveCameraManualyScript.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/game/MoveCameraManualyScript.cpp b/game/MoveCameraManualyScript.cpp
index 0181333..9d75a75 100644
--- a/game/MoveCameraManualyScript.cpp
+++ b/game/MoveCameraManualyScript.cpp
@@ -4,8 +4,9 @@ using namespace crepe;
using namespace std;
void MoveCameraManualyScript::init() {
- subscribe<KeyPressEvent>(
- [this](const KeyPressEvent & ev) -> bool { return this->keypressed(ev); });
+ subscribe<KeyPressEvent>([this](const KeyPressEvent & ev) -> bool {
+ return this->keypressed(ev);
+ });
}
bool MoveCameraManualyScript::keypressed(const KeyPressEvent & event) {