aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-12-22 11:53:57 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-12-22 11:53:57 +0100
commite2162171c7ab72f450f73a0908946aa4a4dee5ee (patch)
tree0116200f9223c21852a9c6b5cb63bf3f555cbec8
parent794facac7a7a1886bc2e0fea4c19c1106d6b458e (diff)
`make format`
-rw-r--r--game/makefile5
-rw-r--r--mwe/events/include/event.h2
-rw-r--r--src/crepe/system/InputSystem.h6
3 files changed, 9 insertions, 4 deletions
diff --git a/game/makefile b/game/makefile
new file mode 100644
index 0000000..3fedf7f
--- /dev/null
+++ b/game/makefile
@@ -0,0 +1,5 @@
+.PHONY: FORCE
+
+format: FORCE
+ $(MAKE) -C .. $@
+
diff --git a/mwe/events/include/event.h b/mwe/events/include/event.h
index e1b220b..ee1bf52 100644
--- a/mwe/events/include/event.h
+++ b/mwe/events/include/event.h
@@ -148,7 +148,7 @@ private:
};
class ShutDownEvent : public Event {
public:
- ShutDownEvent() : Event("ShutDownEvent"){};
+ ShutDownEvent() : Event("ShutDownEvent") {};
REGISTER_EVENT_TYPE(ShutDownEvent)
diff --git a/src/crepe/system/InputSystem.h b/src/crepe/system/InputSystem.h
index 2cb80e5..45b238b 100644
--- a/src/crepe/system/InputSystem.h
+++ b/src/crepe/system/InputSystem.h
@@ -23,7 +23,7 @@ public:
/**
* \param metadata Metadata of the button pressed
*/
- ButtonPressEvent(const Metadata & metadata) : metadata(metadata){};
+ ButtonPressEvent(const Metadata & metadata) : metadata(metadata) {};
};
//! Event triggered when the mouse enters a button
class ButtonEnterEvent : public Event {
@@ -33,7 +33,7 @@ public:
/**
* \param metadata Metadata of the button pressed
*/
- ButtonEnterEvent(const Metadata & metadata) : metadata(metadata){};
+ ButtonEnterEvent(const Metadata & metadata) : metadata(metadata) {};
};
//! Event triggered when the mouse leaves a button
class ButtonExitEvent : public Event {
@@ -43,7 +43,7 @@ public:
/**
* \param metadata Metadata of the button pressed
*/
- ButtonExitEvent(const Metadata & metadata) : metadata(metadata){};
+ ButtonExitEvent(const Metadata & metadata) : metadata(metadata) {};
};
/**