summaryrefslogtreecommitdiff
path: root/src/tangara/input/feedback_device.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tangara/input/feedback_device.hpp')
-rw-r--r--src/tangara/input/feedback_device.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tangara/input/feedback_device.hpp b/src/tangara/input/feedback_device.hpp
index 4faeeafd..8253642f 100644
--- a/src/tangara/input/feedback_device.hpp
+++ b/src/tangara/input/feedback_device.hpp
@@ -7,6 +7,7 @@
#pragma once
#include <cstdint>
+#include "core/lv_group.h"
namespace input {
@@ -23,7 +24,7 @@ class IFeedbackDevice {
public:
virtual ~IFeedbackDevice() {}
- virtual auto feedback(uint8_t event_type) -> void = 0;
+ virtual auto feedback(lv_group_t* group, uint8_t event_type) -> void = 0;
// TODO: Add configuration; likely the same shape of interface that
// IInputDevice uses.